Experiment with setting up system test docker services

This commit is contained in:
2024-08-17 16:38:41 +02:00
parent 4f287d85dd
commit 5c532a6bb5
13 changed files with 590 additions and 13 deletions

View File

@@ -0,0 +1,13 @@
namespace WebApi.Tests.System;
public static class Constants
{
public static class Login
{
public const string ClientId = "vegasco";
public const string ClientSecret = "siIgnkijkkIxeQ9BDNwnGGUb60S53QZh";
public const string Username = "test.user";
public const string Password = "T3sttest.";
public const string Realm = "development";
}
}