01: // $Id: OOPSLAMeasurements.java,v 1.2 2004/05/12 17:26:53 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 oopsla01.
14: *
15: * @version $Revision: 1.2 $
16: * @author Andrei Popovici
17: */
18: public class OOPSLAMeasurements extends TestCase {
19:
20: // fixture
21:
22: /**
23: * Construct test with given name.
24: * @param name test name
25: */
26: public OOPSLAMeasurements(String name) {
27: super (name);
28: }
29:
30: /**
31: * Set up fixture.
32: */
33: protected void setUp() {
34: }
35:
36: protected void tearDown() {
37: }
38:
39: /**
40: * Test suite.
41: * @return test instance
42: */
43: public static Test suite() {
44: TestSuite testSuite = new TestSuite();
45: testSuite.addTest(CalibrationMeasurement.suite());
46: // testSuite.addTest(AllLocationsSimulationMeasurement.suite());
47: return testSuite;
48: }
49:
50: }
51:
52: //======================================================================
53: //
54: // $Log: OOPSLAMeasurements.java,v $
55: // Revision 1.2 2004/05/12 17:26:53 anicoara
56: // Adapt Junit tests to 3.8.1 version and the new package structure
57: //
58: // Revision 1.1.1.1 2003/07/02 15:30:46 apopovic
59: // Imported from ETH Zurich
60: //
61: // Revision 1.3 2003/03/04 18:35:59 popovici
62: // Organization of imprts
63: //
64: // Revision 1.2 2002/02/21 13:20:38 popovici
65: // AllLocations removed
66: //
67: // Revision 1.1.1.1 2001/11/29 18:13:34 popovici
68: // Sources from runes
69: //
70: // Revision 1.1.2.1 2001/03/23 12:06:22 popovici
71: // Initial Revision
72: //
73: //
|