diff --git a/test/Ocelot.UnitTests/LoadBalancer/CookieStickySessionsCreatorTests.cs b/test/Ocelot.UnitTests/LoadBalancer/CookieStickySessionsCreatorTests.cs index 20f65da4..bf004010 100644 --- a/test/Ocelot.UnitTests/LoadBalancer/CookieStickySessionsCreatorTests.cs +++ b/test/Ocelot.UnitTests/LoadBalancer/CookieStickySessionsCreatorTests.cs @@ -24,7 +24,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_expected_name() + public void should_return_instance_of_expected_load_balancer_type() { var reRoute = new DownstreamReRouteBuilder() .WithLoadBalancerOptions(new LoadBalancerOptions("myType", "myKey", 1000)) @@ -37,7 +37,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_instance_of_expected_load_balancer_type() + public void should_return_expected_name() { this.When(x => x.WhenIGetTheLoadBalancerTypeName()) .Then(x => x.ThenTheLoadBalancerTypeIs("CookieStickySessions")) diff --git a/test/Ocelot.UnitTests/LoadBalancer/LeastConnectionCreatorTests.cs b/test/Ocelot.UnitTests/LoadBalancer/LeastConnectionCreatorTests.cs index 507958fd..37d678cd 100644 --- a/test/Ocelot.UnitTests/LoadBalancer/LeastConnectionCreatorTests.cs +++ b/test/Ocelot.UnitTests/LoadBalancer/LeastConnectionCreatorTests.cs @@ -24,7 +24,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_expected_name() + public void should_return_instance_of_expected_load_balancer_type() { var reRoute = new DownstreamReRouteBuilder() .WithServiceName("myService") @@ -37,7 +37,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_instance_of_expected_load_balancer_type() + public void should_return_expected_name() { this.When(x => x.WhenIGetTheLoadBalancerTypeName()) .Then(x => x.ThenTheLoadBalancerTypeIs("LeastConnection")) diff --git a/test/Ocelot.UnitTests/LoadBalancer/NoLoadBalancerCreatorTests.cs b/test/Ocelot.UnitTests/LoadBalancer/NoLoadBalancerCreatorTests.cs index 6b61c5a9..1cdcb3ab 100644 --- a/test/Ocelot.UnitTests/LoadBalancer/NoLoadBalancerCreatorTests.cs +++ b/test/Ocelot.UnitTests/LoadBalancer/NoLoadBalancerCreatorTests.cs @@ -24,7 +24,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_expected_name() + public void should_return_instance_of_expected_load_balancer_type() { var reRoute = new DownstreamReRouteBuilder() .Build(); @@ -36,7 +36,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_instance_of_expected_load_balancer_type() + public void should_return_expected_name() { this.When(x => x.WhenIGetTheLoadBalancerTypeName()) .Then(x => x.ThenTheLoadBalancerTypeIs("NoLoadBalancer")) diff --git a/test/Ocelot.UnitTests/LoadBalancer/RoundRobinCreatorTests.cs b/test/Ocelot.UnitTests/LoadBalancer/RoundRobinCreatorTests.cs index 80d43568..83f7cb6f 100644 --- a/test/Ocelot.UnitTests/LoadBalancer/RoundRobinCreatorTests.cs +++ b/test/Ocelot.UnitTests/LoadBalancer/RoundRobinCreatorTests.cs @@ -24,7 +24,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_expected_name() + public void should_return_instance_of_expected_load_balancer_type() { var reRoute = new DownstreamReRouteBuilder() .Build(); @@ -36,7 +36,7 @@ namespace Ocelot.UnitTests.LoadBalancer } [Fact] - public void should_return_instance_of_expected_load_balancer_type() + public void should_return_expected_name() { this.When(x => x.WhenIGetTheLoadBalancerTypeName()) .Then(x => x.ThenTheLoadBalancerTypeIs("RoundRobin"))