Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Bugs1919Tests.java 952B

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