aboutsummaryrefslogtreecommitdiffstats
path: root/loadtime5/testsrc/Loadtime5ModuleTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'loadtime5/testsrc/Loadtime5ModuleTests.java')
-rw-r--r--loadtime5/testsrc/Loadtime5ModuleTests.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/loadtime5/testsrc/Loadtime5ModuleTests.java b/loadtime5/testsrc/Loadtime5ModuleTests.java
new file mode 100644
index 000000000..231c80df6
--- /dev/null
+++ b/loadtime5/testsrc/Loadtime5ModuleTests.java
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2005 Contributors.
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors: (See CVS logs)
+ *
+ *******************************************************************************/
+
+import org.aspectj.testing.util.TestUtil;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ */
+public class Loadtime5ModuleTests extends TestCase {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(Loadtime5ModuleTests.class.getName());
+ TestUtil.loadTestsReflectively(suite, "Loadtime515ModuleTests", true);
+ return suite;
+ }
+ public static void main(String[] args) {
+ junit.textui.TestRunner.main(new String[] {Loadtime5ModuleTests.class.getName()});
+ }
+
+}