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.

Ajc199TestsJava.java 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. /*******************************************************************************
  2. * Copyright (c) 2022 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.ajc199;
  9. import junit.framework.Test;
  10. import org.aspectj.testing.XMLBasedAjcTestCase;
  11. import org.aspectj.testing.XMLBasedAjcTestCaseForJava18OrLater;
  12. /**
  13. * @author Alexander Kriegisch
  14. */
  15. public class Ajc199TestsJava extends XMLBasedAjcTestCaseForJava18OrLater {
  16. public void testDummyJava18() {
  17. //runTest("dummy Java 18");
  18. }
  19. public static Test suite() {
  20. return XMLBasedAjcTestCase.loadSuite(Ajc199TestsJava.class);
  21. }
  22. @Override
  23. protected java.net.URL getSpecFile() {
  24. return getClassResource("ajc199.xml");
  25. }
  26. }