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.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 v 2.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  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. import org.aspectj.systemtest.ajc198.AllTestsAspectJ198;
  19. /**
  20. * @author Andy Clement
  21. */
  22. public class AllTests19 {
  23. public static Test suite() {
  24. TestSuite suite = new TestSuite("AspectJ System Test Suite - 1.9");
  25. // $JUnit-BEGIN$
  26. suite.addTest(AllTestsAspectJ190.suite());
  27. suite.addTest(AllTestsAspectJ191.suite());
  28. suite.addTest(AllTestsAspectJ192.suite());
  29. suite.addTest(AllTestsAspectJ193.suite());
  30. // there were no new tests for 1.9.4
  31. suite.addTest(AllTestsAspectJ195.suite());
  32. suite.addTest(AllTestsAspectJ196.suite());
  33. suite.addTest(AllTestsAspectJ197.suite());
  34. suite.addTest(AllTestsAspectJ198.suite());
  35. suite.addTest(AllTests18.suite());
  36. // $JUnit-END$
  37. return suite;
  38. }
  39. }