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

12345678910111213141516171819202122232425262728293031323334353637
  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 junit.framework.Test;
  15. import junit.framework.TestSuite;
  16. /**
  17. * @author Andy Clement
  18. */
  19. public class AllTests19 {
  20. public static Test suite() {
  21. TestSuite suite = new TestSuite("AspectJ System Test Suite - 1.9");
  22. // $JUnit-BEGIN$
  23. suite.addTest(AllTestsAspectJ190.suite());
  24. suite.addTest(AllTestsAspectJ191.suite());
  25. suite.addTest(AllTestsAspectJ192.suite());
  26. suite.addTest(AllTestsAspectJ193.suite());
  27. // there were no new tests for 1.9.4
  28. suite.addTest(AllTestsAspectJ195.suite());
  29. suite.addTest(AllTests18.suite());
  30. // $JUnit-END$
  31. return suite;
  32. }
  33. }