<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="testsrc"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="src" path="/ajbrowser"/>
- <classpathentry kind="src" path="/ajde"/>
- <classpathentry kind="src" path="/asm"/>
- <classpathentry kind="src" path="/bridge"/>
- <classpathentry kind="src" path="/build"/>
- <classpathentry kind="src" path="/org.aspectj.ajdt.core"/>
- <classpathentry kind="src" path="/org.eclipse.jdt.core"/>
- <classpathentry kind="src" path="/runtime"/>
- <classpathentry kind="src" path="/taskdefs"/>
- <classpathentry kind="src" path="/testing"/>
- <classpathentry kind="src" path="/testing-client"/>
- <classpathentry kind="src" path="/testing-drivers"/>
- <classpathentry kind="src" path="/testing-util"/>
- <classpathentry kind="src" path="/util"/>
- <classpathentry kind="src" path="/weaver"/>
- <classpathentry kind="lib" path="/lib/junit/junit.jar" sourcepath="/lib/junit/junit-src.jar"/>
- <classpathentry kind="output" path="bin"/>
+ <classpathentry kind="src" path="testsrc"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="src" path="/ajbrowser"/>
+ <classpathentry kind="src" path="/ajde"/>
+ <classpathentry kind="src" path="/asm"/>
+ <classpathentry kind="src" path="/bridge"/>
+ <classpathentry kind="src" path="/build"/>
+ <classpathentry kind="src" path="/org.aspectj.ajdt.core"/>
+ <classpathentry kind="src" path="/org.eclipse.jdt.core"/>
+ <classpathentry kind="src" path="/runtime"/>
+ <classpathentry kind="src" path="/taskdefs"/>
+ <classpathentry kind="src" path="/testing"/>
+ <classpathentry kind="src" path="/testing-client"/>
+ <classpathentry kind="src" path="/testing-drivers"/>
+ <classpathentry kind="src" path="/testing-util"/>
+ <classpathentry kind="src" path="/util"/>
+ <classpathentry kind="src" path="/weaver"/>
+ <classpathentry sourcepath="/lib/junit/junit-src.jar" kind="lib" path="/lib/junit/junit.jar"/>
+ <classpathentry kind="src" path="/tests"/>
+ <classpathentry kind="output" path="bin"/>
</classpath>
--- /dev/null
+import org.aspectj.systemtest.AllTests14;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+/*
+ * Created on 03-Aug-2004
+ *
+ * TODO To change the template for this generated file go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+
+/**
+ * @author colyer
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class RunTheseBeforeYouCommitTests {
+
+ public static Test suite() {
+ TestSuite suite = new TestSuite("Test for default package");
+ //$JUnit-BEGIN$
+ suite.addTest(AllTests.suite());
+ suite.addTest(AllTests14.suite());
+ //$JUnit-END$
+ return suite;
+ }
+}