@@ -27,10 +27,10 @@ public void ConstructorWithNullValue_ResultsInEmptyValue()
2727 #region Equals
2828
2929 [ Theory ]
30- [ InlineAutoMockedData ( "hello world" , "hello world" ) ]
31- [ InlineAutoMockedData ( "a" , "a" ) ]
32- [ InlineAutoMockedData ( " " , " " ) ]
33- [ InlineAutoMockedData ( "" , "" ) ]
30+ [ AutoMockedData ( "hello world" , "hello world" ) ]
31+ [ AutoMockedData ( "a" , "a" ) ]
32+ [ AutoMockedData ( " " , " " ) ]
33+ [ AutoMockedData ( "" , "" ) ]
3434 public void Equals_SameContentShouldBeEqual ( string str1 , string str2 )
3535 {
3636 var bstring1 = new BString ( str1 ) ;
@@ -41,9 +41,9 @@ public void Equals_SameContentShouldBeEqual(string str1, string str2)
4141 }
4242
4343 [ Theory ]
44- [ InlineAutoMockedData ( "hello" , "world" ) ]
45- [ InlineAutoMockedData ( " " , "" ) ]
46- [ InlineAutoMockedData ( "1" , "2" ) ]
44+ [ AutoMockedData ( "hello" , "world" ) ]
45+ [ AutoMockedData ( " " , "" ) ]
46+ [ AutoMockedData ( "1" , "2" ) ]
4747 public void Equals_DifferentContentShouldNotBeEqual ( string str1 , string str2 )
4848 {
4949 var bstring1 = new BString ( str1 ) ;
@@ -64,10 +64,10 @@ public void Equals_DifferentEncodingAreNotEqual()
6464 }
6565
6666 [ Theory ]
67- [ InlineAutoMockedData ( "hello world" , "hello world" ) ]
68- [ InlineAutoMockedData ( "a" , "a" ) ]
69- [ InlineAutoMockedData ( " " , " " ) ]
70- [ InlineAutoMockedData ( "" , "" ) ]
67+ [ AutoMockedData ( "hello world" , "hello world" ) ]
68+ [ AutoMockedData ( "a" , "a" ) ]
69+ [ AutoMockedData ( " " , " " ) ]
70+ [ AutoMockedData ( "" , "" ) ]
7171 public void EqualsOperator_BString_WithSameContentShouldBeEqual ( string str1 , string str2 )
7272 {
7373 var bstring1 = new BString ( str1 ) ;
@@ -77,9 +77,9 @@ public void EqualsOperator_BString_WithSameContentShouldBeEqual(string str1, str
7777 }
7878
7979 [ Theory ]
80- [ InlineAutoMockedData ( "hello" , "world" ) ]
81- [ InlineAutoMockedData ( " " , "" ) ]
82- [ InlineAutoMockedData ( "1" , "2" ) ]
80+ [ AutoMockedData ( "hello" , "world" ) ]
81+ [ AutoMockedData ( " " , "" ) ]
82+ [ AutoMockedData ( "1" , "2" ) ]
8383 public void EqualsOperator_BString_WithDifferentContentShouldNotBeEqual ( string str1 , string str2 )
8484 {
8585 var bstring1 = new BString ( str1 ) ;
@@ -98,29 +98,29 @@ public void EqualsOperator_BString_WithDifferentEncodingAreNotEqual()
9898 }
9999
100100 [ Theory ]
101- [ InlineAutoMockedData ( "hello world" , "hello world" ) ]
102- [ InlineAutoMockedData ( "a" , "a" ) ]
103- [ InlineAutoMockedData ( " " , " " ) ]
104- [ InlineAutoMockedData ( "" , "" ) ]
101+ [ AutoMockedData ( "hello world" , "hello world" ) ]
102+ [ AutoMockedData ( "a" , "a" ) ]
103+ [ AutoMockedData ( " " , " " ) ]
104+ [ AutoMockedData ( "" , "" ) ]
105105 public void EqualsOperator_String_WithSameContentAreEqual ( string str1 , string str2 )
106106 {
107107 var bstring = new BString ( str1 ) ;
108108 ( bstring == str2 ) . Should ( ) . BeTrue ( ) ;
109109 }
110110
111111 [ Theory ]
112- [ InlineAutoMockedData ( "hello" , "world" ) ]
113- [ InlineAutoMockedData ( " " , "" ) ]
114- [ InlineAutoMockedData ( "1" , "2" ) ]
112+ [ AutoMockedData ( "hello" , "world" ) ]
113+ [ AutoMockedData ( " " , "" ) ]
114+ [ AutoMockedData ( "1" , "2" ) ]
115115 public void EqualsOperator_String_WithDifferentContentAreNotEqual ( string str1 , string str2 )
116116 {
117117 var bstring = new BString ( str1 ) ;
118118 ( bstring == str2 ) . Should ( ) . BeFalse ( ) ;
119119 }
120120
121121 [ Theory ]
122- [ InlineAutoMockedData ( "test" , "test" ) ]
123- [ InlineAutoMockedData ( "TEST" , "TEST" ) ]
122+ [ AutoMockedData ( "test" , "test" ) ]
123+ [ AutoMockedData ( "TEST" , "TEST" ) ]
124124 public void GetHashCode_AreEqualWithSameContent ( string str1 , string str2 )
125125 {
126126 var bstring1 = new BString ( str1 ) ;
@@ -133,14 +133,14 @@ public void GetHashCode_AreEqualWithSameContent(string str1, string str2)
133133 }
134134
135135 [ Theory ]
136- [ InlineAutoMockedData ( "Test Strin" ) ]
137- [ InlineAutoMockedData ( "Test Strin " ) ]
138- [ InlineAutoMockedData ( "Test String " ) ]
139- [ InlineAutoMockedData ( "Test String2" ) ]
140- [ InlineAutoMockedData ( "Test StrinG" ) ]
141- [ InlineAutoMockedData ( "test string" ) ]
142- [ InlineAutoMockedData ( "TestString" ) ]
143- [ InlineAutoMockedData ( "teststring" ) ]
136+ [ AutoMockedData ( "Test Strin" ) ]
137+ [ AutoMockedData ( "Test Strin " ) ]
138+ [ AutoMockedData ( "Test String " ) ]
139+ [ AutoMockedData ( "Test String2" ) ]
140+ [ AutoMockedData ( "Test StrinG" ) ]
141+ [ AutoMockedData ( "test string" ) ]
142+ [ AutoMockedData ( "TestString" ) ]
143+ [ AutoMockedData ( "teststring" ) ]
144144 public void GetHashCode_AreNotEqualWithDifferentValues ( string other )
145145 {
146146 var bstring = new BString ( "Test String" ) ;
@@ -160,9 +160,9 @@ public void Encoding_DefaultIsUTF8()
160160 #region Encode
161161
162162 [ Theory ]
163- [ InlineAutoMockedData ( "some string" , 11 ) ]
164- [ InlineAutoMockedData ( "spam" , 4 ) ]
165- [ InlineAutoMockedData ( "1234567890" , 10 ) ]
163+ [ AutoMockedData ( "some string" , 11 ) ]
164+ [ AutoMockedData ( "spam" , 4 ) ]
165+ [ AutoMockedData ( "1234567890" , 10 ) ]
166166 public void CanEncode ( string str , int length )
167167 {
168168 var bstring = new BString ( str ) ;
0 commit comments