This commit is contained in:
Paul Schneider 2021-06-06 20:32:39 +01:00
commit ef33058ef5
20 changed files with 175 additions and 140 deletions

View file

@ -1,22 +1,23 @@
namespace test.Settings
namespace yavscTests.Settings
{
public class PasswordCreds
{
public string UserName { get; set; }
public string Password { get; set; }
}
public class Testing
public class TestingSetup
{
public DbConnectionSettings ConnectionStrings { get; set; }
public PasswordCreds[] ValidCreds
public PasswordCreds ValidCreds
{
get; set;
}
public PasswordCreds[] InvalidCreds
public PasswordCreds InvalidCreds
{
get; set;
}
public string YavscWebPath {get; set; }
}
}