System.err.println("Done.\n");
// test_RuntimeException
System.err.println("Testing test_RuntimeException...");
try {
mri.test_RuntimeException();
fail("test_RuntimeException() should have thrown RuntimeException");
} catch (RuntimeException e) {
System.err.println(e.toString());
}
System.err.println("Done.\n");