mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-05-04 13:52:51 +08:00
16 lines
459 B
C#
16 lines
459 B
C#
using Ocelot.Configuration.Creator;
|
|
using Shouldly;
|
|
using Xunit;
|
|
|
|
namespace Ocelot.UnitTests.Configuration
|
|
{
|
|
public class IdentityServerConfigurationCreatorTests
|
|
{
|
|
[Fact]
|
|
public void happy_path_only_exists_for_test_coverage_even_uncle_bob_probably_wouldnt_test_this()
|
|
{
|
|
var result = IdentityServerConfigurationCreator.GetIdentityServerConfiguration();
|
|
result.ApiName.ShouldBe("admin");
|
|
}
|
|
}
|
|
} |