KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > prose > JVMAITests


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

8 package ch.ethz.prose;
9
10 // used packages
11
import junit.framework.*;
12
13 /**
14  * JUnit testcase for all jvmai-relevant aspects
15  *
16  * @version $Revision: 1.2 $
17  * @author Stephan Markwalder
18  */

19 public
20 class JVMAITests extends TestCase {
21
22
23
24   // fixture
25

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

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

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

51   public static
52   Test suite()
53   {
54       TestSuite testSuite = new TestSuite();
55       //testSuite.addTest(ProviderTest.suite());
56
testSuite.addTest(JVMAspectInterfaceTest.suite());
57       testSuite.addTest(JVMInfoInterfaceTest.suite());
58       return testSuite;
59   }
60
61
62
63 }
64
65
66 //======================================================================
67
//
68
// $Log: JVMAITests.java,v $
69
// Revision 1.2 2004/05/12 17:26:51 anicoara
70
// Adapt Junit tests to 3.8.1 version and the new package structure
71
//
72
// Revision 1.1.1.1 2003/07/02 15:30:42 apopovic
73
// Imported from ETH Zurich
74
//
75
// Revision 1.1 2003/05/05 14:02:32 popovici
76
// renaming from runes to prose
77
//
78
// Revision 1.3 2003/04/26 14:09:09 popovici
79
// Aspect interface test uncommented
80
//
81
// Revision 1.2 2003/03/04 18:36:09 popovici
82
// Organization of imprts
83
//
84
// Revision 1.1 2003/03/04 12:10:26 popovici
85
// Moved from inf/jvmai (whitebox location) to inf/runes/ (bb location)
86
//
87
// Revision 1.1 2002/02/05 11:13:02 smarkwal
88
// Initial revision
89
//
90
Popular Tags