Files

16 lines
374 B
C#
Raw Permalink Normal View History

2026-02-06 06:48:34 -06:00
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");
}
}