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

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