1 /*** 2 * The tests collected here all take a 'significant' length of time to execute, 3 * i.e. greater than 2 seconds elapsed on my machine. 4 * 5 * to prevent a JVM startup-shutdown time per test, it should be more efficient to 6 * collect the tests together into a suite. 7 * 8 * @author <a href="mailto:jeremy.rayner@bigfoot.com">Jeremy Rayner</a> 9 * @version $Revision: 1.10 $ 10 */ 11 import junit.framework.*; 12 public class UberTestCaseLongRunningTests extends TestCase { 13 public static Test suite() { 14 return AllCodehausJavaTestsSuite.suite(); 15 } 16 17 }