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 2.0KB

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