mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 09:35:27 +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");
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |