blob: 412656f80e2042b3ef25d4b2993299149abf9aee [file] [log] [blame] [raw]
package net.querz.nbt.test;
import junit.framework.TestCase;
public class TestUtil {
public static void assertThrowsException(Runnable r, Class<? extends Exception> e) {
try {
r.run();
TestCase.fail();
} catch (Exception ex) {
TestCase.assertEquals(ex.getClass(), e);
}
}
public static void assertThrowsException(Runnable r) {
try {
r.run();
TestCase.fail();
} catch (Exception ex) {}
}
}