@@ -21,7 +21,7 @@ public ScopesAuthorizerTests()
21
21
}
22
22
23
23
[ Fact ]
24
- public void Should_return_ok_if_no_allowed_scopes ( )
24
+ public void should_return_ok_if_no_allowed_scopes ( )
25
25
{
26
26
this . Given ( _ => GivenTheFollowing ( new ClaimsPrincipal ( ) ) )
27
27
. And ( _ => GivenTheFollowing ( new List < string > ( ) ) )
@@ -31,7 +31,7 @@ public void Should_return_ok_if_no_allowed_scopes()
31
31
}
32
32
33
33
[ Fact ]
34
- public void Should_return_ok_if_null_allowed_scopes ( )
34
+ public void should_return_ok_if_null_allowed_scopes ( )
35
35
{
36
36
this . Given ( _ => GivenTheFollowing ( new ClaimsPrincipal ( ) ) )
37
37
. And ( _ => GivenTheFollowing ( ( List < string > ) null ) )
@@ -41,7 +41,7 @@ public void Should_return_ok_if_null_allowed_scopes()
41
41
}
42
42
43
43
[ Fact ]
44
- public void Should_return_error_if_claims_parser_returns_error ( )
44
+ public void should_return_error_if_claims_parser_returns_error ( )
45
45
{
46
46
var fakeError = new FakeError ( ) ;
47
47
this . Given ( _ => GivenTheFollowing ( new ClaimsPrincipal ( ) ) )
@@ -53,7 +53,7 @@ public void Should_return_error_if_claims_parser_returns_error()
53
53
}
54
54
55
55
[ Fact ]
56
- public void Should_match_scopes_and_return_ok_result ( )
56
+ public void should_match_scopes_and_return_ok_result ( )
57
57
{
58
58
var claimsPrincipal = new ClaimsPrincipal ( ) ;
59
59
var allowedScopes = new List < string > { "someScope" } ;
@@ -67,7 +67,7 @@ public void Should_match_scopes_and_return_ok_result()
67
67
}
68
68
69
69
[ Fact ]
70
- public void Should_not_match_scopes_and_return_error_result ( )
70
+ public void should_not_match_scopes_and_return_error_result ( )
71
71
{
72
72
var fakeError = new FakeError ( ) ;
73
73
var claimsPrincipal = new ClaimsPrincipal ( ) ;
0 commit comments