@@ -45,7 +45,7 @@ public ContentResultAssertions BeContentResult()
4545 /// </param>
4646 public ContentResultAssertions BeContentResult ( string reason , params object [ ] reasonArgs )
4747 {
48- Execute . Verification
48+ Execute . Assertion
4949 . BecauseOf ( reason , reasonArgs )
5050 . ForCondition ( Subject is ContentResult )
5151 . FailWith ( Constants . CommonFailMessage , typeof ( ContentResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -73,7 +73,7 @@ public EmptyResult BeEmptyResult()
7373 /// </param>
7474 public EmptyResult BeEmptyResult ( string reason , params object [ ] reasonArgs )
7575 {
76- Execute . Verification
76+ Execute . Assertion
7777 . BecauseOf ( reason , reasonArgs )
7878 . ForCondition ( Subject is EmptyResult )
7979 . FailWith ( Constants . CommonFailMessage , typeof ( EmptyResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -101,7 +101,7 @@ public RedirectToRouteAssertions BeRedirectToRouteResult()
101101 /// </param>
102102 public RedirectToRouteAssertions BeRedirectToRouteResult ( string reason , params object [ ] reasonArgs )
103103 {
104- Execute . Verification
104+ Execute . Assertion
105105 . BecauseOf ( reason , reasonArgs )
106106 . ForCondition ( Subject is RedirectToRouteResult )
107107 . FailWith ( Constants . CommonFailMessage , typeof ( RedirectToRouteResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -129,7 +129,7 @@ public PartialViewResultAssertions BePartialViewResult()
129129 /// </param>
130130 public PartialViewResultAssertions BePartialViewResult ( string reason , params object [ ] reasonArgs )
131131 {
132- Execute . Verification
132+ Execute . Assertion
133133 . BecauseOf ( reason , reasonArgs )
134134 . ForCondition ( Subject is PartialViewResult )
135135 . FailWith ( Constants . CommonFailMessage , typeof ( PartialViewResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -157,7 +157,7 @@ public RedirectResultAssertions BeRedirectResult()
157157 /// </param>
158158 public RedirectResultAssertions BeRedirectResult ( string reason , params object [ ] reasonArgs )
159159 {
160- Execute . Verification
160+ Execute . Assertion
161161 . BecauseOf ( reason , reasonArgs )
162162 . ForCondition ( Subject is RedirectResult )
163163 . FailWith ( Constants . CommonFailMessage , "RedirectResult" , Subject . GetType ( ) . Name ) ;
@@ -185,7 +185,7 @@ public ViewResultAssertions BeViewResult()
185185 /// </param>
186186 public ViewResultAssertions BeViewResult ( string reason , params object [ ] reasonArgs )
187187 {
188- Execute . Verification
188+ Execute . Assertion
189189 . BecauseOf ( reason , reasonArgs )
190190 . ForCondition ( Subject is ViewResult )
191191 . FailWith ( Constants . CommonFailMessage , "ViewResult" , Subject . GetType ( ) . Name ) ;
0 commit comments