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.

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Created on 03-Aug-2004
  3. *
  4. * TODO To change the template for this generated file go to
  5. * Window - Preferences - Java - Code Style - Code Templates
  6. */
  7. package org.aspectj.systemtest;
  8. import org.aspectj.systemtest.java14.Java14Tests;
  9. import junit.framework.Test;
  10. import junit.framework.TestSuite;
  11. /**
  12. * @author colyer
  13. *
  14. * TODO To change the template for this generated type comment go to
  15. * Window - Preferences - Java - Code Style - Code Templates
  16. */
  17. public class AllTests14 {
  18. public static Test suite() {
  19. TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.4");
  20. //$JUnit-BEGIN$
  21. suite.addTest(AllTests.suite());
  22. suite.addTest(Java14Tests.suite());
  23. //$JUnit-END$
  24. return suite;
  25. }
  26. }