KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > measurements > suites > OOPSLAMeasurements


1 // $Id: OOPSLAMeasurements.java,v 1.2 2004/05/12 17:26:53 anicoara Exp $
2
// =====================================================================
3
//
4
// (history at end)
5
//
6

7 package measurements.suites;
8
9 // 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
19 class OOPSLAMeasurements extends TestCase {
20
21
22
23   // fixture
24

25   /**
26    * Construct test with given name.
27    * @param name test name
28    */

29   public OOPSLAMeasurements(String JavaDoc name)
30   {
31     super(name);
32   }
33
34   /**
35    * Set up fixture.
36    */

37   protected void setUp()
38   {
39   }
40
41   protected void tearDown()
42     {
43     }
44
45   /**
46    * Test suite.
47    * @return test instance
48    */

49   public static
50   Test suite()
51   {
52       TestSuite testSuite = new TestSuite();
53       testSuite.addTest(CalibrationMeasurement.suite());
54       // testSuite.addTest(AllLocationsSimulationMeasurement.suite());
55
return testSuite;
56   }
57
58
59
60 }
61
62
63 //======================================================================
64
//
65
// $Log: OOPSLAMeasurements.java,v $
66
// Revision 1.2 2004/05/12 17:26:53 anicoara
67
// Adapt Junit tests to 3.8.1 version and the new package structure
68
//
69
// Revision 1.1.1.1 2003/07/02 15:30:46 apopovic
70
// Imported from ETH Zurich
71
//
72
// Revision 1.3 2003/03/04 18:35:59 popovici
73
// Organization of imprts
74
//
75
// Revision 1.2 2002/02/21 13:20:38 popovici
76
// AllLocations removed
77
//
78
// Revision 1.1.1.1 2001/11/29 18:13:34 popovici
79
// Sources from runes
80
//
81
// Revision 1.1.2.1 2001/03/23 12:06:22 popovici
82
// Initial Revision
83
//
84
//
85
Popular Tags