Experiment with setting up system test docker services

This commit is contained in:
ThompsonNye
2024-08-09 18:39:26 +02:00
parent 07bdf36eb1
commit 17427ca3d0
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";
}
}