@@ -31,7 +31,7 @@ Action TestCase(int testNumber, TestActual testActual, AssertException exception
31
31
TestCase ( 0 , new TestActual ( null ) , null , new AssertOthers ( ) , expected : ( exception : null , others : true ) ) ,
32
32
TestCase ( 1 , new TestActual ( null ) , new AssertException ( ) , null , expected : ( exception : null , others : false ) ) ,
33
33
TestCase ( 2 , new TestActual ( null ) , new AssertException ( ) , new AssertOthers ( ) , expected : ( exception : null , others : true ) ) ,
34
- TestCase ( 3 , new TestActual ( ex ) , null , new AssertOthers ( ) , expected : ( exception : null , others : false ) , expectedExceptionType : typeof ( DummyException ) ) ,
34
+ TestCase ( 3 , new TestActual ( ex ) , null , new AssertOthers ( ) , expected : ( exception : null , others : false ) , expectedExceptionType : typeof ( TestAssertException ) ) ,
35
35
TestCase ( 4 , new TestActual ( ex ) , new AssertException ( ) , null , expected : ( exception : ex , others : false ) ) ,
36
36
TestCase ( 5 , new TestActual ( ex ) , new AssertException ( ) , new AssertOthers ( ) , expected : ( exception : ex , others : true ) ) ,
37
37
} ) { action ( ) ; }
@@ -66,7 +66,7 @@ Action TestCase(int testNumber, TestActual<DummyObject> testActual, AssertReturn
66
66
TestCase ( 2 , new TestActual < DummyObject > ( obj , null ) , new AssertReturn ( ) , new AssertException ( ) , null , expected : ( @return : obj , exception : null , others : false ) ) ,
67
67
TestCase ( 3 , new TestActual < DummyObject > ( obj , null ) , new AssertReturn ( ) , new AssertException ( ) , new AssertOthers ( ) , expected : ( @return : obj , exception : null , others : true ) ) ,
68
68
TestCase ( 4 , new TestActual < DummyObject > ( null , ex ) , null , new AssertException ( ) , new AssertOthers ( ) , expected : ( @return : null , exception : null , others : false ) , expectedExceptionType : typeof ( ArgumentNullException ) ) ,
69
- TestCase ( 5 , new TestActual < DummyObject > ( null , ex ) , new AssertReturn ( ) , null , new AssertOthers ( ) , expected : ( @return : null , exception : null , others : false ) , expectedExceptionType : typeof ( DummyException ) ) ,
69
+ TestCase ( 5 , new TestActual < DummyObject > ( null , ex ) , new AssertReturn ( ) , null , new AssertOthers ( ) , expected : ( @return : null , exception : null , others : false ) , expectedExceptionType : typeof ( TestAssertException ) ) ,
70
70
TestCase ( 6 , new TestActual < DummyObject > ( null , ex ) , new AssertReturn ( ) , new AssertException ( ) , null , expected : ( @return : null , exception : ex , others : false ) ) ,
71
71
TestCase ( 7 , new TestActual < DummyObject > ( null , ex ) , new AssertReturn ( ) , new AssertException ( ) , new AssertOthers ( ) , expected : ( @return : null , exception : ex , others : true ) ) ,
72
72
} ) { action ( ) ; }
0 commit comments