You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AllTests15.java 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Created on 19-01-2005
  3. */
  4. package org.aspectj.systemtest;
  5. import junit.framework.Test;
  6. import junit.framework.TestSuite;
  7. import org.aspectj.systemtest.ajc150.AllTestsAspectJ150;
  8. import org.aspectj.systemtest.ajc150.ataspectj.AtAjAnnotationGenTests;
  9. import org.aspectj.systemtest.ajc151.AllTestsAspectJ151;
  10. import org.aspectj.systemtest.ajc152.AllTestsAspectJ152;
  11. import org.aspectj.systemtest.ajc153.AllTestsAspectJ153;
  12. import org.aspectj.systemtest.incremental.tools.MultiProjectIncrementalTests;
  13. import org.aspectj.systemtest.xlint.XLint5Tests;
  14. public class AllTests15 {
  15. public static Test suite() {
  16. TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.5");
  17. //$JUnit-BEGIN$
  18. suite.addTest(AllTests14.suite());
  19. suite.addTest(AllTestsAspectJ150.suite());
  20. suite.addTest(AllTestsAspectJ151.suite());
  21. suite.addTest(AllTestsAspectJ152.suite());
  22. suite.addTest(AllTestsAspectJ153.suite());
  23. suite.addTest(AtAjAnnotationGenTests.suite());
  24. /* FIXME maw Many of these tests do not depend on Java 5 but they
  25. * cannot be executed in Eclipse with 1.3 because of XML issues and
  26. * are excluded on the build machine so moving them here loses nothing
  27. * for the moment.
  28. */
  29. suite.addTestSuite(MultiProjectIncrementalTests.class);
  30. suite.addTest(XLint5Tests.suite());
  31. //$JUnit-END$
  32. return suite;
  33. }
  34. }