diff options
Diffstat (limited to 'aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java')
-rw-r--r-- | aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java b/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java deleted file mode 100644 index c1d54dc67..000000000 --- a/aspectj5rt/java5-testsrc/Aspectj5rt15ModuleTests.java +++ /dev/null @@ -1,34 +0,0 @@ -/* ******************************************************************* - * 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: - * Wes Isberg initial implementation - * ******************************************************************/ - -// default package - -import junit.framework.Test; -import junit.framework.TestCase; -import junit.framework.TestSuite; - -import org.aspectj.internal.lang.reflect.AjTypeTests; -import org.aspectj.internal.lang.reflect.AjTypeTestsWithAspects; -import org.aspectj.internal.lang.reflect.InterTypeTests; - -public class Aspectj5rt15ModuleTests extends TestCase { - - public static Test suite() { - TestSuite suite = new TestSuite("Aspectj5rt module tests"); - suite.addTestSuite(AjTypeTests.class); - suite.addTestSuite(AjTypeTestsWithAspects.class); - suite.addTestSuite(InterTypeTests.class); - return suite; - } - - -} |