aboutsummaryrefslogtreecommitdiffstats
path: root/weaver5/java5-testsrc/org/aspectj/weaver/AllWeaver5Tests.java
diff options
context:
space:
mode:
Diffstat (limited to 'weaver5/java5-testsrc/org/aspectj/weaver/AllWeaver5Tests.java')
-rw-r--r--weaver5/java5-testsrc/org/aspectj/weaver/AllWeaver5Tests.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/weaver5/java5-testsrc/org/aspectj/weaver/AllWeaver5Tests.java b/weaver5/java5-testsrc/org/aspectj/weaver/AllWeaver5Tests.java
deleted file mode 100644
index 54f35656f..000000000
--- a/weaver5/java5-testsrc/org/aspectj/weaver/AllWeaver5Tests.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/* *******************************************************************
- * Copyright (c) 2005-2006 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:
- * Adrian Colyer Initial implementation
- * Matthew Webster Move from default package
- * ******************************************************************/
-package org.aspectj.weaver;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-import org.aspectj.weaver.reflect.ReflectionWorldReferenceTypeTest;
-import org.aspectj.weaver.reflect.ReflectionWorldSpecificTest;
-import org.aspectj.weaver.tools.PointcutExpressionTest;
-
-public class AllWeaver5Tests {
-
- public static Test suite() {
- TestSuite suite = new TestSuite(AllWeaver5Tests.class.getName());
- // $JUnit-BEGIN$
- suite.addTest(AllTracing5Tests.suite());
- suite.addTest(BcweaverModuleTests15.suite());
- suite.addTestSuite(ReflectionWorldReferenceTypeTest.class);
- suite.addTestSuite(PointcutExpressionTest.class);
- suite.addTestSuite(JoinPointSignatureIteratorTests.class);
- // gives incompatible class version error...
- // suite.addTestSuite(ReflectionWorldAdvancedPointcutExpressionTests.class
- // );
- suite.addTestSuite(ReflectionWorldSpecificTest.class);
- // $JUnit-END$
- return suite;
- }
-
-}