KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > measurements > suites > AllMeasurements


1 // $Id: AllMeasurements.java,v 1.2 2004/05/12 17:26:52 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 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 JavaDoc name)
26     {
27         super(name);
28     }
29
30     /**
31      * Test suite.
32      * @return test instance
33      */

34     public static Test suite()
35     {
36         TestSuite testSuite = new TestSuite();
37         testSuite.addTest(CalibrationMeasurement.suite());
38         testSuite.addTest(JVMAIMeasurement.suite());
39         testSuite.addTest(JVMAIInfoMeasurement.suite());
40         testSuite.addTest(CrosscutMeasurement.suite());
41         return testSuite;
42     }
43
44 }
45
46
47 //======================================================================
48
//
49
// $Log: AllMeasurements.java,v $
50
// Revision 1.2 2004/05/12 17:26:52 anicoara
51
// Adapt Junit tests to 3.8.1 version and the new package structure
52
//
53
// Revision 1.1.1.1 2003/07/02 15:30:45 apopovic
54
// Imported from ETH Zurich
55
//
56
// Revision 1.10 2003/03/04 18:36:00 popovici
57
// Organization of imprts
58
//
59
// Revision 1.9 2002/09/27 14:17:44 popovici
60
// Functional Crosscut obsolete
61
//
62
// Revision 1.8 2002/05/06 09:08:10 popovici
63
// all _test now real test cases; JVMAI measurement enhanced with interface testing
64
//
65
// Revision 1.7 2002/03/28 09:15:34 popovici
66
// CrosscutMeasurement not any more in All Measurements
67
//
68
// Revision 1.6 2002/03/14 08:46:22 popovici
69
// Minor adaptations and corrections
70
//
71
// Revision 1.5 2002/02/25 15:20:50 smarkwal
72
// JVMAIInfoMeasurements added
73
//
74
// Revision 1.4 2002/02/21 12:57:15 popovici
75
// CrosscutMeasurements replaces AllLocatgionsMeasurement and is more comprehensive
76
//
77
// Revision 1.3 2002/02/15 12:31:09 smarkwal
78
// minor changes like spaces/tabs, setUp
79
//
80
// Revision 1.2 2002/02/05 11:22:38 smarkwal
81
// modifications to test JVMAI-based implementation
82
//
83
// Revision 1.1.1.1 2001/11/29 18:13:34 popovici
84
// Sources from runes
85
//
86
// Revision 1.1.2.2 2001/01/22 07:20:04 popovici
87
// AllLocationMeasurements, FunctionalCrosscut and JVMDI Measurements added
88
//
89
// Revision 1.1.2.1 2000/12/13 15:29:05 popovici
90
// Initial Revision
91
//
92
//
93
Popular Tags