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.

AllTests18.java 2.1KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*******************************************************************************
  2. * Copyright (c) 2013, 2014 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. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest;
  12. import org.aspectj.systemtest.ajc180.AllTestsAspectJ180;
  13. import org.aspectj.systemtest.ajc181.AllTestsAspectJ181;
  14. import org.aspectj.systemtest.ajc1810.AllTestsAspectJ1810;
  15. import org.aspectj.systemtest.ajc1811.AllTestsAspectJ1811;
  16. import org.aspectj.systemtest.ajc182.AllTestsAspectJ182;
  17. import org.aspectj.systemtest.ajc183.AllTestsAspectJ183;
  18. import org.aspectj.systemtest.ajc184.AllTestsAspectJ184;
  19. import org.aspectj.systemtest.ajc185.AllTestsAspectJ185;
  20. import org.aspectj.systemtest.ajc186.AllTestsAspectJ186;
  21. import org.aspectj.systemtest.ajc187.AllTestsAspectJ187;
  22. import org.aspectj.systemtest.ajc188.AllTestsAspectJ188;
  23. import org.aspectj.systemtest.ajc189.AllTestsAspectJ189;
  24. import junit.framework.Test;
  25. import junit.framework.TestSuite;
  26. public class AllTests18 {
  27. public static Test suite() {
  28. TestSuite suite = new TestSuite("AspectJ System Test Suite - 1.8");
  29. // $JUnit-BEGIN$
  30. suite.addTest(AllTestsAspectJ1811.suite());
  31. suite.addTest(AllTestsAspectJ1810.suite());
  32. suite.addTest(AllTestsAspectJ189.suite());
  33. suite.addTest(AllTestsAspectJ188.suite());
  34. suite.addTest(AllTestsAspectJ187.suite());
  35. suite.addTest(AllTestsAspectJ186.suite());
  36. suite.addTest(AllTestsAspectJ185.suite());
  37. suite.addTest(AllTestsAspectJ184.suite());
  38. suite.addTest(AllTestsAspectJ183.suite());
  39. suite.addTest(AllTestsAspectJ182.suite());
  40. suite.addTest(AllTestsAspectJ181.suite());
  41. suite.addTest(AllTestsAspectJ180.suite());
  42. suite.addTest(AllTests17.suite());
  43. // suite.addTest(AllTests16.suite());
  44. // suite.addTest(AllTests15.suite());
  45. // $JUnit-END$
  46. return suite;
  47. }
  48. }