Version: testng-6.8.8.jar
This test runs green:
@Test(expectedExceptions = { NullPointerException.class })
public void shouldTestNGIgnoreAssertsAfterExceptionThrown() throws Exception {
String iAmNull = null;
int length = iAmNull.length();
assertEquals(0, 1);
}
Any config file or other options
to continue and evaluate asserts after the exception has taken place ?