aboutsummaryrefslogtreecommitdiffstats
path: root/weaver5/java5-testsrc
diff options
context:
space:
mode:
authoraclement <aclement>2005-09-27 09:14:59 +0000
committeraclement <aclement>2005-09-27 09:14:59 +0000
commit24e42cff3410e4b427a233112ab0c9b7d43f0ea1 (patch)
treea155647bb20960f76cab195baf47aa1bcd261a67 /weaver5/java5-testsrc
parent20cafd486b5f5181153fadc4179c2cf313c931a5 (diff)
downloadaspectj-24e42cff3410e4b427a233112ab0c9b7d43f0ea1.tar.gz
aspectj-24e42cff3410e4b427a233112ab0c9b7d43f0ea1.zip
trick the build machine into compiling our code !
Diffstat (limited to 'weaver5/java5-testsrc')
-rw-r--r--weaver5/java5-testsrc/Weaver5ModuleTests.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/weaver5/java5-testsrc/Weaver5ModuleTests.java b/weaver5/java5-testsrc/Weaver5ModuleTests.java
deleted file mode 100644
index 434f3022a..000000000
--- a/weaver5/java5-testsrc/Weaver5ModuleTests.java
+++ /dev/null
@@ -1,40 +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: (See CVS logs)
- *
- *******************************************************************************/
-
-import org.aspectj.testing.util.TestUtil;
-import org.aspectj.util.LangUtil;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- */
-public class Weaver5ModuleTests extends TestCase {
-
- public static Test suite() {
- TestSuite suite = new TestSuite(Weaver5ModuleTests.class.getName());
- if (TestUtil.is15VMOrGreater()) {
-// if (LangUtil.is15VMOrGreater()) {
- TestUtil.loadTestsReflectively(suite, "org.aspectj.weaver.tools.Java15PointcutExpressionTest", false);
-// }
-// TestUtil.loadTestsReflectively(suite, "Weaver515ModuleTests", true);
- } else {
- suite.addTest(TestUtil.testNamed("all tests require 1.5"));
- }
- return suite;
- }
- public static void main(String[] args) {
- junit.textui.TestRunner.main(new String[] {Weaver5ModuleTests.class.getName()});
- }
-
-}