Code: Select all
try {
someCode();
fail("some error message");
} catch (SomeSpecificExceptionType ex) {
}
Code: Select all
public static class ExpectedExceptionUtility {
public static void checkForExpectedException(String message, ExpectedExceptionBlock block) {
try {
block.exceptionThrowingCode();
fail(message);
} catch (T ex) {
}
}
}
Wie kann ich so etwas tun und die Java-Einschränkung umgehen?
Gibt es eine Möglichkeit zu überprüfen, ob die ex-Variable vom Typ T ist?
Mobile version