Skip to content

Commit

Permalink
IDE1006 Naming rule violation: These words must begin with upper case…
Browse files Browse the repository at this point in the history
… characters: should_*
  • Loading branch information
raman-m committed Aug 22, 2023
1 parent 9564e2c commit e99b633
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/Ocelot.AcceptanceTests/AuthenticationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down

0 comments on commit e99b633

Please sign in to comment.