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.

AllTestsAspectJ195.java 1004B

1234567891011121314151617181920212223242526272829
  1. /*******************************************************************************
  2. * Copyright (c) 2018-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. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc195;
  12. import org.aspectj.util.LangUtil;
  13. import junit.framework.Test;
  14. import junit.framework.TestSuite;
  15. public class AllTestsAspectJ195 {
  16. private static final int JAVA_VERSION = 13;
  17. public static Test suite() {
  18. TestSuite suite = new TestSuite("AspectJ 1.9.5 tests");
  19. suite.addTest(Ajc195Tests.suite());
  20. if (LangUtil.isVMGreaterOrEqual(JAVA_VERSION)) {
  21. suite.addTest(SanityTestsJava13.suite());
  22. }
  23. return suite;
  24. }
  25. }