Ocelot/test/Ocelot.UnitTests/Configuration/IdentityServerConfigurationCreatorTests.cs
Tom Gardham-Pallister e96d66139f boost test coverage
2017-06-24 13:04:25 +01:00

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");
}
}
}