KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jester > debug > DebugFunctionalTests


1 package jester.debug;
2
3 import jester.TestTester;
4
5
6 /**
7  * This class is for internal debugging reasons only.
8  *
9  * It runs the package jester.functionaltests with Jester.
10  * It expects the copied source files in the directory
11  * 'modifiedsrc'. There is an ANT target in the project
12  * to copy the source files to that directory.
13  */

14 public class DebugFunctionalTests {
15
16     private final static String JavaDoc SOURCE_DIR = "modifiedsrc";
17     
18     public static void main(String JavaDoc[] args) throws Exception JavaDoc {
19         TestTester.main(new String JavaDoc[]{jester.functionaltests.TestAll.class.getName(), SOURCE_DIR});
20     }
21     
22 }
23
Popular Tags