KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hammurapi > inspectors > metrics > callertrace > tests > AllTests


1 /*
2  * Created on Nov 2, 2003
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.hammurapi.inspectors.metrics.callertrace.tests;
8
9 import junit.framework.Test;
10 import junit.framework.TestSuite;
11
12 public class AllTests {
13
14   public static void main(String JavaDoc args[]) {
15     junit.textui.TestRunner.run (suite());
16   }
17
18   public static Test suite()
19   {
20
21     TestSuite suite = new TestSuite("Test for XREF ");
22
23     // Add test suites
24
suite.addTest(TracedMethodLocComparatorTest.suite());
25     suite.addTest(TraceCaller.suite());
26     suite.addTest(AdjacencyMatrixTest.suite());
27
28
29
30     return suite;
31   }
32
33    public static void oneTimeSetUp() {
34       //one-time initialization code
35
}
36
37    public static void oneTimeTearDown() {
38       //one-time claen up code
39
}
40
41 }//class AllTests
42
Popular Tags