您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }