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;"; }