01: // $Id: JVMAITests.java,v 1.2 2004/05/12 17:26:51 anicoara Exp $
02: // =====================================================================
03: //
04: // (history at end)
05: //
06:
07: package ch.ethz.prose;
08:
09: // used packages
10: import junit.framework.*;
11:
12: /**
13: * JUnit testcase for all jvmai-relevant aspects
14: *
15: * @version $Revision: 1.2 $
16: * @author Angela Nicoara
17: * @author Stephan Markwalder
18: */
19: public class JVMAITests extends TestCase {
20:
21: /**
22: * Construct test with given name.
23: * @param name test name
24: */
25: public JVMAITests(String name) {
26: super (name);
27: }
28:
29: /**
30: * Set up fixture.
31: */
32: protected void setUp() {
33: }
34:
35: protected void tearDown() {
36: }
37:
38: /**
39: * Test suite.
40: * @return test instance
41: */
42: public static Test suite() {
43: TestSuite testSuite = new TestSuite();
44: //testSuite.addTest(ProviderTest.suite());
45: testSuite.addTest(JVMAspectInterfaceTest.suite());
46: testSuite.addTest(JVMInfoInterfaceTest.suite());
47:
48: // testSuite.addTest(HotSwapClassRegisterTest.suite());
49: // testSuite.addTest(HotSwapTest.suite());
50: // testSuite.addTest(HotSwapConstructorJoinPointTest.suite());
51: // testSuite.addTest(MethodRedefineTest.suite());
52:
53: return testSuite;
54: }
55:
56: }
57:
58: //======================================================================
59: //
60: // $Log: JVMAITests.java,v $
61: // Revision 1.2 2004/05/12 17:26:51 anicoara
62: // Adapt Junit tests to 3.8.1 version and the new package structure
63: //
64: // Revision 1.1.1.1 2003/07/02 15:30:42 apopovic
65: // Imported from ETH Zurich
66: //
67: // Revision 1.1 2003/05/05 14:02:32 popovici
68: // renaming from runes to prose
69: //
70: // Revision 1.3 2003/04/26 14:09:09 popovici
71: // Aspect interface test uncommented
72: //
73: // Revision 1.2 2003/03/04 18:36:09 popovici
74: // Organization of imprts
75: //
76: // Revision 1.1 2003/03/04 12:10:26 popovici
77: // Moved from inf/jvmai (whitebox location) to inf/runes/ (bb location)
78: //
79: // Revision 1.1 2002/02/05 11:13:02 smarkwal
80: // Initial revision
81: //
|