Тесты

This commit is contained in:
2025-02-17 21:07:05 +04:00
parent 3b5ffb40e1
commit ba060a7e21
15 changed files with 1817 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
using CatHasPawsContratcs.Infrastructure;
namespace CatHasPawsTests.Infrastructure;
internal class ConfigurationDatabaseTest : IConfigurationDatabase
{
public string ConnectionString =>
"Host=127.0.0.1;Port=5432;Database=CatHasPawsTest;Username=postgres;Password=postgres;";
}