01: /*
02: * Created on Nov 2, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.hammurapi.inspectors.metrics.callertrace.tests;
08:
09: import junit.framework.Test;
10: import junit.framework.TestSuite;
11:
12: public class AllTests {
13:
14: public static void main(String args[]) {
15: junit.textui.TestRunner.run(suite());
16: }
17:
18: public static Test suite() {
19:
20: TestSuite suite = new TestSuite("Test for XREF ");
21:
22: // Add test suites
23: suite.addTest(TracedMethodLocComparatorTest.suite());
24: suite.addTest(TraceCaller.suite());
25: suite.addTest(AdjacencyMatrixTest.suite());
26:
27: return suite;
28: }
29:
30: public static void oneTimeSetUp() {
31: //one-time initialization code
32: }
33:
34: public static void oneTimeTearDown() {
35: //one-time claen up code
36: }
37:
38: }//class AllTests
|