mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-26 12:22:51 +08:00
18 lines
416 B
C#
18 lines
416 B
C#
using Ocelot.Configuration;
|
|
using Ocelot.LoadBalancer.LoadBalancers;
|
|
using Shouldly;
|
|
using Xunit;
|
|
|
|
namespace Ocelot.UnitTests.LoadBalancer
|
|
{
|
|
public class LoadBalancerOptionsTests
|
|
{
|
|
[Fact]
|
|
public void should_default_to_no_load_balancer()
|
|
{
|
|
var options = new LoadBalancerOptionsBuilder().Build();
|
|
options.Type.ShouldBe(nameof(NoLoadBalancer));
|
|
}
|
|
}
|
|
}
|