@@ -12,21 +12,21 @@ namespace HttpUnitTests
1212 public class WebHeaderCollectionTests
1313 {
1414 [ TestMethod ]
15- public void Add_Authorization_BearerWithSpaceAndNoValue_ShouldNotThrow ( )
15+ public void Add_Authorization_BearerWithSpaceAndNoValue ( )
1616 {
1717 var headers = new WebHeaderCollection ( ) ;
1818 headers . Add ( "Authorization: Bearer " ) ;
1919 }
2020
2121 [ TestMethod ]
22- public void Add_Authorization_NoSpaceSingleChar_ShouldNotThrow ( )
22+ public void Add_Authorization_NoSpaceSingleChar ( )
2323 {
2424 var headers = new WebHeaderCollection ( ) ;
2525 headers . Add ( "Authorization: 1" ) ;
2626 }
2727
2828 [ TestMethod ]
29- public void Add_Authorization_ValidBearer_ShouldSucceed ( )
29+ public void Add_Authorization_ValidBearer ( )
3030 {
3131 var headers = new WebHeaderCollection ( ) ;
3232 headers . Add ( "Authorization: Bearer a11111" ) ;
@@ -35,7 +35,7 @@ public void Add_Authorization_ValidBearer_ShouldSucceed()
3535 }
3636
3737 [ TestMethod ]
38- public void Add_Authorization_ValidTestValue_ShouldSucceed ( )
38+ public void Add_Authorization_ValidTestValue ( )
3939 {
4040 var headers = new WebHeaderCollection ( ) ;
4141 headers . Add ( "Authorization: test 1" ) ;
@@ -44,15 +44,15 @@ public void Add_Authorization_ValidTestValue_ShouldSucceed()
4444 }
4545
4646 [ TestMethod ]
47- public void Add_Authorization_ValidSingleLetterPair_ShouldSucceed ( )
47+ public void Add_Authorization_ValidSingleLetterPair ( )
4848 {
4949 var headers = new WebHeaderCollection ( ) ;
5050 headers . Add ( "Authorization: a b" ) ;
5151 string value = headers [ "Authorization" ] ;
5252 Assert . AreEqual ( "a b" , value ) ;
5353 }
5454 [ TestMethod ]
55- public void Add_Authorization_EmptyValue_ShouldNotThrow ( )
55+ public void Add_Authorization_EmptyValue ( )
5656 {
5757 var headers = new WebHeaderCollection ( ) ;
5858 headers . Add ( "Authorization:" ) ;
@@ -61,7 +61,7 @@ public void Add_Authorization_EmptyValue_ShouldNotThrow()
6161 }
6262
6363 [ TestMethod ]
64- public void Add_Authorization_ColonWithSpaceOnly_ShouldNotThrow ( )
64+ public void Add_Authorization_ColonWithSpaceOnly ( )
6565 {
6666 var headers = new WebHeaderCollection ( ) ;
6767 headers . Add ( "Authorization: " ) ;
0 commit comments