forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
14 lines
405 B
C#
14 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MagicCarpetContracts.Infrastructure;
|
|
|
|
namespace MagicCarpetTests.Infrastructure;
|
|
|
|
internal class ConfigurationDatabaseTest : IConfigurationDatabase
|
|
{
|
|
public string ConnectionString => "Host=127.0.0.1;Port=5432;Database=MagicCarpetTest;Username=postgres;Password=postgres;";
|
|
}
|