boost test coverage

This commit is contained in:
Tom Gardham-Pallister
2017-06-24 13:04:25 +01:00
parent 6cdf4e67df
commit e96d66139f
3 changed files with 142 additions and 0 deletions

View File

@ -0,0 +1,16 @@
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");
}
}
}