0
私は例外クラスを記述しようとした、とここに私のコードです:なぜJUnitが「例外」ではなく「オブジェクト」を呼び出すのですか?
public class DealWithMeException {
public DealWithMeException(String message){
message="To make a class a checked exception it needs be a subclass of the appropriate Java class";
}
}
私は私のJUnitテストを実行すると、エラーは常に「立ち上がると言うJava.long.objectの代わりJava.longを呼び出します.exceptions」
、ここでは私のJUnitテストコードです:
public class ExceptionsTest {
@Test
public final void testCheckedException() {
Class<DealWithMeException> cut = DealWithMeException.class;
assertEquals("To make a class a checked exception it needs be a subclass of the appropriate Java class",
Exception.class, cut.getSuperclass());
}
}
何が起こりましたか?
ありがとうございました! – Yang