import junit.framework.TestCase; public class MixedTest extends TestCase { public void testShouldPassAgain() throws Exception { new ThisShouldCompile(); } public void testShouldFailAgain() throws Exception { fail("testShouldFailAgain failed"); } }