aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-06-08 23:47:18 +0000
committerwisberg <wisberg>2005-06-08 23:47:18 +0000
commit117f9d3a07b1483927e79b338b015dceaea5b507 (patch)
treeb4ac91ae783f304f8fa1a047e8b7e479b0e02952 /org.aspectj.ajdt.core
parent333fa6c9a231455fb6b50bc9435314355adeb7aa (diff)
downloadaspectj-117f9d3a07b1483927e79b338b015dceaea5b507.tar.gz
aspectj-117f9d3a07b1483927e79b338b015dceaea5b507.zip
package roll-up, mainly for Ant JUnit gather
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r--org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTests.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTests.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTests.java
new file mode 100644
index 000000000..b1b01884c
--- /dev/null
+++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTests.java
@@ -0,0 +1,34 @@
+/* *******************************************************************
+ * 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
+ * ******************************************************************/
+
+
+package org.aspectj.tools.ajc;
+
+import java.io.File;
+
+import org.aspectj.testing.util.TestUtil;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+public class AjcTests extends TestCase {
+ public static String aspectjrtClasspath() {
+ return TestUtil.aspectjrtPath().getPath();
+ }
+ public static Test suite() {
+ TestSuite suite = new TestSuite(AjcTests.class.getName());
+ suite.addTestSuite(org.aspectj.tools.ajc.MainTest.class);
+ return suite;
+ }
+
+}