@@ -26,7 +26,7 @@ public ContentResultAssertions BeContentResult()
2626
2727 public ContentResultAssertions BeContentResult ( string reason , params object [ ] reasonArgs )
2828 {
29- Execute . Verification
29+ Execute . Assertion
3030 . BecauseOf ( reason , reasonArgs )
3131 . ForCondition ( Subject is ContentResult )
3232 . FailWith ( Constants . CommonFailMessage , typeof ( ContentResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -41,7 +41,7 @@ public EmptyResult BeEmptyResult()
4141
4242 public EmptyResult BeEmptyResult ( string reason , params object [ ] reasonArgs )
4343 {
44- Execute . Verification
44+ Execute . Assertion
4545 . BecauseOf ( reason , reasonArgs )
4646 . ForCondition ( Subject is EmptyResult )
4747 . FailWith ( Constants . CommonFailMessage , typeof ( EmptyResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -56,7 +56,7 @@ public RedirectToRouteAssertions BeRedirectToRouteResult()
5656
5757 public RedirectToRouteAssertions BeRedirectToRouteResult ( string reason , params object [ ] reasonArgs )
5858 {
59- Execute . Verification
59+ Execute . Assertion
6060 . BecauseOf ( reason , reasonArgs )
6161 . ForCondition ( Subject is RedirectToRouteResult )
6262 . FailWith ( Constants . CommonFailMessage , typeof ( RedirectToRouteResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -71,7 +71,7 @@ public PartialViewResultAssertions BePartialViewResult()
7171
7272 public PartialViewResultAssertions BePartialViewResult ( string reason , params object [ ] reasonArgs )
7373 {
74- Execute . Verification
74+ Execute . Assertion
7575 . BecauseOf ( reason , reasonArgs )
7676 . ForCondition ( Subject is PartialViewResult )
7777 . FailWith ( Constants . CommonFailMessage , typeof ( PartialViewResult ) . Name , Subject . GetType ( ) . Name ) ;
@@ -86,7 +86,7 @@ public RedirectResultAssertions BeRedirectResult()
8686
8787 public RedirectResultAssertions BeRedirectResult ( string reason , params object [ ] reasonArgs )
8888 {
89- Execute . Verification
89+ Execute . Assertion
9090 . BecauseOf ( reason , reasonArgs )
9191 . ForCondition ( Subject is RedirectResult )
9292 . FailWith ( Constants . CommonFailMessage , "RedirectResult" , Subject . GetType ( ) . Name ) ;
@@ -101,7 +101,7 @@ public ViewResultAssertions BeViewResult()
101101
102102 public ViewResultAssertions BeViewResult ( string reason , params object [ ] reasonArgs )
103103 {
104- Execute . Verification
104+ Execute . Assertion
105105 . BecauseOf ( reason , reasonArgs )
106106 . ForCondition ( Subject is ViewResult )
107107 . FailWith ( Constants . CommonFailMessage , "ViewResult" , Subject . GetType ( ) . Name ) ;
0 commit comments