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 Jun 14, 2024
1 parent b26cc2d commit 44b047b
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public HeaderFindAndReplaceCreatorTests()
}

[Fact]
public void should_create()
public void Should_create()
{
var route = new FileRoute
{
Expand Down Expand Up @@ -85,7 +85,7 @@ public void should_create()
}

[Fact]
public void should_create_with_add_headers_to_request()
public void Should_create_with_add_headers_to_request()
{
const string key = "X-Forwarded-For";
const string value = "{RemoteIpAddress}";
Expand All @@ -107,7 +107,7 @@ public void should_create_with_add_headers_to_request()
}

[Fact]
public void should_use_base_url_placeholder()
public void Should_use_base_url_placeholder()
{
var route = new FileRoute
{
Expand All @@ -132,7 +132,7 @@ public void should_use_base_url_placeholder()
}

[Fact]
public void should_log_errors_and_not_add_headers()
public void Should_log_errors_and_not_add_headers()
{
var route = new FileRoute
{
Expand Down Expand Up @@ -174,7 +174,7 @@ private void ThenTheLoggerIsCalledCorrectly(string message)
}

[Fact]
public void should_use_base_url_partial_placeholder()
public void Should_use_base_url_partial_placeholder()
{
var route = new FileRoute
{
Expand Down Expand Up @@ -222,7 +222,7 @@ public void should_map_with_partial_placeholder_in_the_middle()
}

[Fact]
public void should_add_trace_id_header()
public void Should_add_trace_id_header()
{
var route = new FileRoute
{
Expand All @@ -242,7 +242,7 @@ public void should_add_trace_id_header()
}

[Fact]
public void should_add_downstream_header_as_is_when_no_replacement_is_given()
public void Should_add_downstream_header_as_is_when_no_replacement_is_given()
{
var route = new FileRoute
{
Expand All @@ -261,7 +261,7 @@ public void should_add_downstream_header_as_is_when_no_replacement_is_given()
}

[Fact]
public void should_add_upstream_header_as_is_when_no_replacement_is_given()
public void Should_add_upstream_header_as_is_when_no_replacement_is_given()
{
var route = new FileRoute
{
Expand All @@ -280,7 +280,7 @@ public void should_add_upstream_header_as_is_when_no_replacement_is_given()
}

[Fact]
public void should_merge()
public void Should_merge()
{
// Arrange
var local = new Dictionary<string, string>()
Expand Down

0 comments on commit 44b047b

Please sign in to comment.