18 lines
378 B
C#
18 lines
378 B
C#
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";
|
|
});
|
|
}
|
|
} |