01: package experiments;
02:
03: import junit.framework.Test;
04: import junit.framework.TestCase;
05:
06: /**
07: * Test class used for testing Jumble's use of the <code>suite()</code> method.
08: *
09: * @author Tin Pavlinic
10: * @version $Revision: 414 $
11: */
12: public class JumblerExperimentSillySuiteTest extends TestCase {
13: public static Test suite() {
14: return JumblerExperimentTest.suite();
15: }
16: }
|