aboutsummaryrefslogtreecommitdiffstats
path: root/loadtime/testsrc/org/aspectj
diff options
context:
space:
mode:
authormwebster <mwebster>2006-07-30 18:20:50 +0000
committermwebster <mwebster>2006-07-30 18:20:50 +0000
commiteb31ec6c3d7016f7b57210f61c27daa54118c263 (patch)
treefc14cf1f26ffabd6de1c00acdbe0fbc1c6672589 /loadtime/testsrc/org/aspectj
parent50d13c720a2734330c043f45b457483960deb99a (diff)
downloadaspectj-eb31ec6c3d7016f7b57210f61c27daa54118c263.tar.gz
aspectj-eb31ec6c3d7016f7b57210f61c27daa54118c263.zip
Bug 113948 "Repackage AspectJ" (move module root suites out of default package)
Diffstat (limited to 'loadtime/testsrc/org/aspectj')
-rw-r--r--loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java b/loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java
new file mode 100644
index 000000000..da7509b6f
--- /dev/null
+++ b/loadtime/testsrc/org/aspectj/loadtime/LoadtimeModuleTests.java
@@ -0,0 +1,47 @@
+package org.aspectj.loadtime;
+/*******************************************************************************
+ * 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:
+ * Alexandre Vasseur initial implementation
+ *******************************************************************************/
+
+import junit.framework.TestCase;
+import junit.framework.Test;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+import org.aspectj.weaver.loadtime.AjTest;
+import org.aspectj.weaver.loadtime.ClassLoaderWeavingAdaptorTest;
+import org.aspectj.weaver.loadtime.JRockitAgentTest;
+import org.aspectj.weaver.loadtime.WeavingContextTest;
+import org.aspectj.weaver.loadtime.WeavingURLClassLoaderTest;
+import org.aspectj.weaver.loadtime.test.DocumentParserTest;
+
+/**
+ * @author <a href="mailto:alex AT gnilux DOT com">Alexandre Vasseur</a>
+ */
+public class LoadtimeModuleTests extends TestCase {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite(LoadtimeModuleTests.class.getName());
+
+ suite.addTestSuite(DocumentParserTest.class);
+ suite.addTestSuite(AjTest.class);
+ suite.addTestSuite(ClassLoaderWeavingAdaptorTest.class);
+ suite.addTestSuite(JRockitAgentTest.class);
+ suite.addTestSuite(WeavingContextTest.class);
+ suite.addTestSuite(WeavingURLClassLoaderTest.class);
+ return suite;
+ }
+
+ public static void main(String args[]) throws Throwable {
+ TestRunner.run(suite());
+ }
+
+}