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.

AllTests19.java 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*******************************************************************************
  2. * Copyright (c) 2013, 2019 Contributors
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *******************************************************************************/
  8. package org.aspectj.systemtest;
  9. import org.aspectj.systemtest.ajc190.AllTestsAspectJ190;
  10. import org.aspectj.systemtest.ajc191.AllTestsAspectJ191;
  11. import org.aspectj.systemtest.ajc192.AllTestsAspectJ192;
  12. import org.aspectj.systemtest.ajc193.AllTestsAspectJ193;
  13. import org.aspectj.systemtest.ajc195.AllTestsAspectJ195;
  14. import org.aspectj.systemtest.ajc196.AllTestsAspectJ196;
  15. import junit.framework.Test;
  16. import junit.framework.TestSuite;
  17. import org.aspectj.systemtest.ajc197.AllTestsAspectJ197;
  18. /**
  19. * @author Andy Clement
  20. */
  21. public class AllTests19 {
  22. public static Test suite() {
  23. TestSuite suite = new TestSuite("AspectJ System Test Suite - 1.9");
  24. // $JUnit-BEGIN$
  25. suite.addTest(AllTestsAspectJ190.suite());
  26. suite.addTest(AllTestsAspectJ191.suite());
  27. suite.addTest(AllTestsAspectJ192.suite());
  28. suite.addTest(AllTestsAspectJ193.suite());
  29. // there were no new tests for 1.9.4
  30. suite.addTest(AllTestsAspectJ195.suite());
  31. suite.addTest(AllTestsAspectJ196.suite());
  32. suite.addTest(AllTestsAspectJ197.suite());
  33. suite.addTest(AllTests18.suite());
  34. // $JUnit-END$
  35. return suite;
  36. }
  37. }