From e99b6339266ca6258d054d8a22f3f172d5f9c7fd Mon Sep 17 00:00:00 2001 From: raman-m Date: Tue, 22 Aug 2023 13:18:49 +0300 Subject: [PATCH] IDE1006 Naming rule violation: These words must begin with upper case characters: should_* --- test/Ocelot.AcceptanceTests/AuthenticationTests.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/Ocelot.AcceptanceTests/AuthenticationTests.cs b/test/Ocelot.AcceptanceTests/AuthenticationTests.cs index 045f8c670..dbeed211b 100644 --- a/test/Ocelot.AcceptanceTests/AuthenticationTests.cs +++ b/test/Ocelot.AcceptanceTests/AuthenticationTests.cs @@ -50,7 +50,7 @@ public AuthenticationTests() } [Fact] - public void should_return_401_using_identity_server_access_token() + public void Should_return_401_using_identity_server_access_token() { var port = RandomPortFinder.GetRandomPort(); @@ -91,7 +91,7 @@ public void should_return_401_using_identity_server_access_token() } [Fact] - public void should_return_response_200_using_identity_server() + public void Should_return_response_200_using_identity_server() { var port = RandomPortFinder.GetRandomPort(); @@ -134,7 +134,7 @@ public void should_return_response_200_using_identity_server() } [Fact] - public void should_return_response_401_using_identity_server_with_token_requested_for_other_api() + public void Should_return_response_401_using_identity_server_with_token_requested_for_other_api() { var port = RandomPortFinder.GetRandomPort(); @@ -176,7 +176,7 @@ public void should_return_response_401_using_identity_server_with_token_requeste } [Fact] - public void should_return_201_using_identity_server_access_token() + public void Should_return_201_using_identity_server_access_token() { var port = RandomPortFinder.GetRandomPort(); @@ -219,7 +219,7 @@ public void should_return_201_using_identity_server_access_token() } [Fact] - public void should_return_201_using_identity_server_reference_token() + public void Should_return_201_using_identity_server_reference_token() { var port = RandomPortFinder.GetRandomPort(); @@ -262,7 +262,7 @@ public void should_return_201_using_identity_server_reference_token() } [Fact] - public void should_return_www_authenticate_header_on_401() + public void Should_return_www_authenticate_header_on_401() { int port = RandomPortFinder.GetRandomPort();