tests: add mucho tests
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace FiscalOS.Infra.Tests.Unit;
|
||||
|
||||
public class SchemesTests
|
||||
{
|
||||
[Fact]
|
||||
public void Default_WhenCalled_ItShouldHaveExpectedValue()
|
||||
{
|
||||
Schemes.Default.Should().Be(JwtBearerDefaults.AuthenticationScheme);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void AllowExpiredTokens_WhenCalled_ItShouldHaveExpectedValue()
|
||||
{
|
||||
Schemes.AllowExpiredTokens.Should().Be("AllowExpiredTokens");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user