15 lines
396 B
C#
15 lines
396 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using RomashkiContract.Infrastructure;
|
|
|
|
namespace RomashkiTests.Infrastructure;
|
|
|
|
internal class ConfigurationDatabaseTest : IConfigurationDatabase
|
|
{
|
|
public string ConnectionString => "Host=127.0.0.1;Port=5432;Database=RomashkiTest;Username=postgres;Password=postgres;";
|
|
}
|
|
|