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.

Java13Tests.java 948B

12345678910111213141516171819202122232425262728293031
  1. /*******************************************************************************
  2. * Copyright (c) 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.ajc193;
  9. import org.aspectj.testing.XMLBasedAjcTestCase;
  10. import org.aspectj.testing.XMLBasedAjcTestCaseForJava13OrLater;
  11. import junit.framework.Test;
  12. /**
  13. * @author Andy Clement
  14. */
  15. public class Java13Tests extends XMLBasedAjcTestCaseForJava13OrLater {
  16. // ---
  17. public static Test suite() {
  18. return XMLBasedAjcTestCase.loadSuite(Java13Tests.class);
  19. }
  20. @Override
  21. protected java.net.URL getSpecFile() {
  22. return getClassResource("ajc193.xml");
  23. }
  24. }