@@ -12,7 +12,7 @@ namespace FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs;
1212public class MsTestAnalyzerTests
1313{
1414 [ TestMethod ]
15- public void BooleanAssertIsTrue ( )
15+ public void AssertIsTrue ( )
1616 {
1717 // arrange
1818 var flag = true ;
@@ -25,7 +25,7 @@ public void BooleanAssertIsTrue()
2525 }
2626
2727 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
28- public void BooleanAssertIsTrue_Failure_OldAssertion ( )
28+ public void AssertIsTrue_Failure_OldAssertion ( )
2929 {
3030 // arrange
3131 var flag = false ;
@@ -35,7 +35,7 @@ public void BooleanAssertIsTrue_Failure_OldAssertion()
3535 }
3636
3737 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
38- public void BooleanAssertIsTrue_Failure_NewAssertion ( )
38+ public void AssertIsTrue_Failure_NewAssertion ( )
3939 {
4040 // arrange
4141 var flag = false ;
@@ -45,7 +45,7 @@ public void BooleanAssertIsTrue_Failure_NewAssertion()
4545 }
4646
4747 [ TestMethod ]
48- public void BooleanAssertIsFalse ( )
48+ public void AssertIsFalse ( )
4949 {
5050 // arrange
5151 var flag = false ;
@@ -58,7 +58,7 @@ public void BooleanAssertIsFalse()
5858 }
5959
6060 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
61- public void BooleanAssertIsFalse_Failure_OldAssertion ( )
61+ public void AssertIsFalse_Failure_OldAssertion ( )
6262 {
6363 // arrange
6464 var flag = true ;
@@ -68,7 +68,7 @@ public void BooleanAssertIsFalse_Failure_OldAssertion()
6868 }
6969
7070 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
71- public void BooleanAssertIsFalse_Failure_NewAssertion ( )
71+ public void AssertIsFalse_Failure_NewAssertion ( )
7272 {
7373 // arrange
7474 var flag = true ;
@@ -78,7 +78,7 @@ public void BooleanAssertIsFalse_Failure_NewAssertion()
7878 }
7979
8080 [ TestMethod ]
81- public void ObjectAssertIsNull ( )
81+ public void AssertIsNull ( )
8282 {
8383 // arrange
8484 object obj = null ;
@@ -91,7 +91,7 @@ public void ObjectAssertIsNull()
9191 }
9292
9393 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
94- public void ObjectAssertIsNull_Failure_OldAssertion ( )
94+ public void AssertIsNull_Failure_OldAssertion ( )
9595 {
9696 // arrange
9797 var obj = "foo" ;
@@ -101,7 +101,7 @@ public void ObjectAssertIsNull_Failure_OldAssertion()
101101 }
102102
103103 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
104- public void ObjectAssertIsNull_Failure_NewAssertion ( )
104+ public void AssertIsNull_Failure_NewAssertion ( )
105105 {
106106 // arrange
107107 var obj = "foo" ;
@@ -111,7 +111,7 @@ public void ObjectAssertIsNull_Failure_NewAssertion()
111111 }
112112
113113 [ TestMethod ]
114- public void ObjectAssertIsNotNull ( )
114+ public void AssertIsNotNull ( )
115115 {
116116 // arrange
117117 var obj = new object ( ) ;
@@ -124,7 +124,7 @@ public void ObjectAssertIsNotNull()
124124 }
125125
126126 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
127- public void ObjectAssertIsNotNull_Failure_OldAssertion ( )
127+ public void AssertIsNotNull_Failure_OldAssertion ( )
128128 {
129129 // arrange
130130 object obj = null ;
@@ -134,7 +134,7 @@ public void ObjectAssertIsNotNull_Failure_OldAssertion()
134134 }
135135
136136 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
137- public void ObjectAssertIsNotNull_Failure_NewAssertion ( )
137+ public void AssertIsNotNull_Failure_NewAssertion ( )
138138 {
139139 // arrange
140140 object obj = null ;
@@ -144,7 +144,7 @@ public void ObjectAssertIsNotNull_Failure_NewAssertion()
144144 }
145145
146146 [ TestMethod ]
147- public void ReferenceTypeAssertIsInstanceOfType ( )
147+ public void AssertIsInstanceOfType ( )
148148 {
149149 // arrange
150150 var obj = new List < object > ( ) ;
@@ -158,7 +158,7 @@ public void ReferenceTypeAssertIsInstanceOfType()
158158 }
159159
160160 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
161- public void ReferenceTypeAssertIsInstanceOfType_Failure_OldAssertion_0 ( )
161+ public void AssertIsInstanceOfType_Failure_OldAssertion_0 ( )
162162 {
163163 // arrange
164164 var obj = new List < int > ( ) ;
@@ -168,7 +168,7 @@ public void ReferenceTypeAssertIsInstanceOfType_Failure_OldAssertion_0()
168168 }
169169
170170 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
171- public void ReferenceTypeAssertIsInstanceOfType_Failure_OldAssertion_1 ( )
171+ public void AssertIsInstanceOfType_Failure_OldAssertion_1 ( )
172172 {
173173 // arrange
174174 var obj = new List < int > ( ) ;
@@ -178,7 +178,7 @@ public void ReferenceTypeAssertIsInstanceOfType_Failure_OldAssertion_1()
178178 }
179179
180180 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
181- public void ReferenceTypeAssertIsInstanceOfType_Failure_NewAssertion ( )
181+ public void AssertIsInstanceOfType_Failure_NewAssertion ( )
182182 {
183183 // arrange
184184 var obj = new List < int > ( ) ;
@@ -188,7 +188,7 @@ public void ReferenceTypeAssertIsInstanceOfType_Failure_NewAssertion()
188188 }
189189
190190 [ TestMethod ]
191- public void ReferenceTypeAssertIsNotInstanceOfType ( )
191+ public void AssertIsNotInstanceOfType ( )
192192 {
193193 // arrange
194194 var obj = new List < int > ( ) ;
@@ -202,7 +202,7 @@ public void ReferenceTypeAssertIsNotInstanceOfType()
202202 }
203203
204204 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
205- public void ReferenceTypeAssertIsNotInstanceOfType_Failure_OldAssertion_0 ( )
205+ public void AssertIsNotInstanceOfType_Failure_OldAssertion_0 ( )
206206 {
207207 // arrange
208208 var obj = new List < object > ( ) ;
@@ -212,7 +212,7 @@ public void ReferenceTypeAssertIsNotInstanceOfType_Failure_OldAssertion_0()
212212 }
213213
214214 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
215- public void ReferenceTypeAssertIsNotInstanceOfType_Failure_OldAssertion_1 ( )
215+ public void AssertIsNotInstanceOfType_Failure_OldAssertion_1 ( )
216216 {
217217 // arrange
218218 var obj = new List < object > ( ) ;
@@ -222,7 +222,7 @@ public void ReferenceTypeAssertIsNotInstanceOfType_Failure_OldAssertion_1()
222222 }
223223
224224 [ TestMethod , ExpectedException ( typeof ( AssertFailedException ) ) ]
225- public void ReferenceTypeAssertIsNotInstanceOfType_Failure_NewAssertion ( )
225+ public void AssertIsNotInstanceOfType_Failure_NewAssertion ( )
226226 {
227227 // arrange
228228 var obj = new List < object > ( ) ;
0 commit comments