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.

RunTheseBeforeYouCommitTests.java 690B

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