01: // $Id: AllMeasurements.java,v 1.2 2004/05/12 17:26:52 anicoara Exp $
02: // =====================================================================
03: //
04: // (history at end)
05: //
06:
07: package measurements.suites;
08:
09: // used packages
10: import junit.framework.*;
11:
12: /**
13: * Performance testcases for Runes. Add additional testcase suites in
14: * the method <code>suitee</code>
15: *
16: * @version $Revision: 1.2 $
17: * @author Andrei Popovici
18: */
19: public class AllMeasurements extends TestCase {
20:
21: /**
22: * Construct test with given name.
23: * @param name test name
24: */
25: public AllMeasurements(String name) {
26: super (name);
27: }
28:
29: /**
30: * Test suite.
31: * @return test instance
32: */
33: public static Test suite() {
34: TestSuite testSuite = new TestSuite();
35: testSuite.addTest(CalibrationMeasurement.suite());
36: testSuite.addTest(JVMAIMeasurement.suite());
37: testSuite.addTest(JVMAIInfoMeasurement.suite());
38: testSuite.addTest(CrosscutMeasurement.suite());
39: return testSuite;
40: }
41:
42: }
43:
44: //======================================================================
45: //
46: // $Log: AllMeasurements.java,v $
47: // Revision 1.2 2004/05/12 17:26:52 anicoara
48: // Adapt Junit tests to 3.8.1 version and the new package structure
49: //
50: // Revision 1.1.1.1 2003/07/02 15:30:45 apopovic
51: // Imported from ETH Zurich
52: //
53: // Revision 1.10 2003/03/04 18:36:00 popovici
54: // Organization of imprts
55: //
56: // Revision 1.9 2002/09/27 14:17:44 popovici
57: // Functional Crosscut obsolete
58: //
59: // Revision 1.8 2002/05/06 09:08:10 popovici
60: // all _test now real test cases; JVMAI measurement enhanced with interface testing
61: //
62: // Revision 1.7 2002/03/28 09:15:34 popovici
63: // CrosscutMeasurement not any more in All Measurements
64: //
65: // Revision 1.6 2002/03/14 08:46:22 popovici
66: // Minor adaptations and corrections
67: //
68: // Revision 1.5 2002/02/25 15:20:50 smarkwal
69: // JVMAIInfoMeasurements added
70: //
71: // Revision 1.4 2002/02/21 12:57:15 popovici
72: // CrosscutMeasurements replaces AllLocatgionsMeasurement and is more comprehensive
73: //
74: // Revision 1.3 2002/02/15 12:31:09 smarkwal
75: // minor changes like spaces/tabs, setUp
76: //
77: // Revision 1.2 2002/02/05 11:22:38 smarkwal
78: // modifications to test JVMAI-based implementation
79: //
80: // Revision 1.1.1.1 2001/11/29 18:13:34 popovici
81: // Sources from runes
82: //
83: // Revision 1.1.2.2 2001/01/22 07:20:04 popovici
84: // AllLocationMeasurements, FunctionalCrosscut and JVMDI Measurements added
85: //
86: // Revision 1.1.2.1 2000/12/13 15:29:05 popovici
87: // Initial Revision
88: //
89: //
|