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 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.ajc1919.AllTestsAspectJ1919;
  12. import org.aspectj.systemtest.ajc192.AllTestsAspectJ192;
  13. import org.aspectj.systemtest.ajc1920.AllTestsAspectJ1920;
  14. import org.aspectj.systemtest.ajc1921.AllTestsAspectJ1921;
  15. import org.aspectj.systemtest.ajc193.AllTestsAspectJ193;
  16. import org.aspectj.systemtest.ajc195.AllTestsAspectJ195;
  17. import org.aspectj.systemtest.ajc196.AllTestsAspectJ196;
  18. import junit.framework.Test;
  19. import junit.framework.TestSuite;
  20. import org.aspectj.systemtest.ajc197.AllTestsAspectJ197;
  21. import org.aspectj.systemtest.ajc198.AllTestsAspectJ198;
  22. import org.aspectj.systemtest.ajc199.AllTestsAspectJ199;
  23. /**
  24. * @author Andy Clement
  25. */
  26. public class AllTests19 {
  27. public static Test suite() {
  28. TestSuite suite = new TestSuite("AspectJ System Test Suite - 1.9");
  29. // $JUnit-BEGIN$
  30. suite.addTest(AllTestsAspectJ190.suite());
  31. suite.addTest(AllTestsAspectJ191.suite());
  32. suite.addTest(AllTestsAspectJ192.suite());
  33. suite.addTest(AllTestsAspectJ193.suite());
  34. // there were no new tests for 1.9.4
  35. suite.addTest(AllTestsAspectJ195.suite());
  36. suite.addTest(AllTestsAspectJ196.suite());
  37. suite.addTest(AllTestsAspectJ197.suite());
  38. suite.addTest(AllTestsAspectJ198.suite());
  39. suite.addTest(AllTestsAspectJ199.suite());
  40. suite.addTest(AllTestsAspectJ1919.suite());
  41. suite.addTest(AllTestsAspectJ1920.suite());
  42. // AspectJ_JDK_Update
  43. suite.addTest(AllTestsAspectJ1921.suite());
  44. suite.addTest(AllTests18.suite());
  45. // $JUnit-END$
  46. return suite;
  47. }
  48. }