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 Oct 26, 2023
1 parent 2c19c3d commit 8877c90
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public UpstreamTemplatePatternCreatorTests()
}

[Fact]
public void should_match_up_to_next_slash()
public void Should_match_up_to_next_slash()
{
var fileRoute = new FileRoute
{
Expand All @@ -32,7 +32,7 @@ public void should_match_up_to_next_slash()
}

[Fact]
public void should_use_re_route_priority()
public void Should_use_re_route_priority()
{
var fileRoute = new FileRoute
{
Expand All @@ -48,7 +48,7 @@ public void should_use_re_route_priority()
}

[Fact]
public void should_use_zero_priority()
public void Should_use_zero_priority()
{
var fileRoute = new FileRoute
{
Expand All @@ -64,7 +64,7 @@ public void should_use_zero_priority()
}

[Fact]
public void should_set_upstream_template_pattern_to_ignore_case_sensitivity()
public void Should_set_upstream_template_pattern_to_ignore_case_sensitivity()
{
var fileRoute = new FileRoute
{
Expand All @@ -80,7 +80,7 @@ public void should_set_upstream_template_pattern_to_ignore_case_sensitivity()
}

[Fact]
public void should_match_forward_slash_or_no_forward_slash_if_template_end_with_forward_slash()
public void Should_match_forward_slash_or_no_forward_slash_if_template_end_with_forward_slash()
{
var fileRoute = new FileRoute
{
Expand All @@ -96,7 +96,7 @@ public void should_match_forward_slash_or_no_forward_slash_if_template_end_with_
}

[Fact]
public void should_set_upstream_template_pattern_to_respect_case_sensitivity()
public void Should_set_upstream_template_pattern_to_respect_case_sensitivity()
{
var fileRoute = new FileRoute
{
Expand All @@ -111,7 +111,7 @@ public void should_set_upstream_template_pattern_to_respect_case_sensitivity()
}

[Fact]
public void should_create_template_pattern_that_matches_anything_to_end_of_string()
public void Should_create_template_pattern_that_matches_anything_to_end_of_string()
{
var fileRoute = new FileRoute
{
Expand All @@ -127,7 +127,7 @@ public void should_create_template_pattern_that_matches_anything_to_end_of_strin
}

[Fact]
public void should_create_template_pattern_that_matches_more_than_one_placeholder()
public void Should_create_template_pattern_that_matches_more_than_one_placeholder()
{
var fileRoute = new FileRoute
{
Expand All @@ -143,7 +143,7 @@ public void should_create_template_pattern_that_matches_more_than_one_placeholde
}

[Fact]
public void should_create_template_pattern_that_matches_more_than_one_placeholder_with_trailing_slash()
public void Should_create_template_pattern_that_matches_more_than_one_placeholder_with_trailing_slash()
{
var fileRoute = new FileRoute
{
Expand All @@ -159,7 +159,7 @@ public void should_create_template_pattern_that_matches_more_than_one_placeholde
}

[Fact]
public void should_create_template_pattern_that_matches_to_end_of_string()
public void Should_create_template_pattern_that_matches_to_end_of_string()
{
var fileRoute = new FileRoute
{
Expand All @@ -174,7 +174,7 @@ public void should_create_template_pattern_that_matches_to_end_of_string()
}

[Fact]
public void should_create_template_pattern_that_matches_to_end_of_string_when_slash_and_placeholder()
public void Should_create_template_pattern_that_matches_to_end_of_string_when_slash_and_placeholder()
{
var fileRoute = new FileRoute
{
Expand All @@ -189,7 +189,7 @@ public void should_create_template_pattern_that_matches_to_end_of_string_when_sl
}

[Fact]
public void should_create_template_pattern_that_starts_with_placeholder_then_has_another_later()
public void Should_create_template_pattern_that_starts_with_placeholder_then_has_another_later()
{
var fileRoute = new FileRoute
{
Expand All @@ -205,7 +205,7 @@ public void should_create_template_pattern_that_starts_with_placeholder_then_has
}

[Fact]
public void should_create_template_pattern_that_matches_query_string()
public void Should_create_template_pattern_that_matches_query_string()
{
var fileRoute = new FileRoute
{
Expand All @@ -220,7 +220,7 @@ public void should_create_template_pattern_that_matches_query_string()
}

[Fact]
public void should_create_template_pattern_that_matches_query_string_with_multiple_params()
public void Should_create_template_pattern_that_matches_query_string_with_multiple_params()
{
var fileRoute = new FileRoute
{
Expand Down

0 comments on commit 8877c90

Please sign in to comment.