feat(AuthClientTests): Initalisiert.

This commit is contained in:
Developer 02
2025-02-03 13:49:35 +01:00
parent bea08ce06c
commit c8eacc1d54
2 changed files with 19 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
using DigitalData.Auth.Client;
using Microsoft.Extensions.DependencyInjection;
namespace DigitalData.Auth.Tests.Client;
[TestFixture]
public class AuthClientTests
{
[SetUp]
public void Setup()
{
var services = new ServiceCollection();
services.AddAuthHubClient(opt =>
{
opt.Url = "https://localhost:7192";
});
}
}