8 lines
288 B
C#
8 lines
288 B
C#
using TwoFromTheCaseContracts.Infrastructure;
|
|
|
|
namespace TwoFromTheCaseTests.Infrastructure;
|
|
|
|
class ConfigurationDatabaseTest : IConfigurationDatabase
|
|
{
|
|
public string ConnectionString => "Host=127.0.0.1;Port=5432;Database=TwoFromTheCaseTest;Username=postgres;Password=postgres;";
|
|
} |