import junit.framework.TestCase; public class PassingTest extends TestCase { public void testShouldPass() throws Exception { new ThisShouldCompile(); } public void testShouldPassSlowly() throws Exception { new ThisShouldCompile(); Thread.sleep(5000); } }