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 455B

123456789101112131415161718192021
  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. public class AllTests15 {
  9. public static Test suite() {
  10. TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.5");
  11. //$JUnit-BEGIN$
  12. suite.addTest(AllTests14.suite());
  13. suite.addTest(AllTestsAspectJ150.suite());
  14. //$JUnit-END$
  15. return suite;
  16. }
  17. }