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.

Bugs198Tests.java 1.1KB

123456789101112131415161718192021222324252627282930313233
  1. /*******************************************************************************
  2. * Copyright (c) 2021 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.ajc198;
  9. import io.bmuskalla.system.properties.PropertyEnvironment;
  10. import io.bmuskalla.system.properties.ScopedSystemProperties;
  11. import junit.framework.Test;
  12. import org.aspectj.testing.XMLBasedAjcTestCase;
  13. /**
  14. * @author Alexander Kriegisch
  15. */
  16. public class Bugs198Tests extends XMLBasedAjcTestCase {
  17. public void testGitHub_105() {
  18. runTest("ITD annotation with mandatory parameter via aspectpath");
  19. }
  20. public static Test suite() {
  21. return XMLBasedAjcTestCase.loadSuite(Bugs198Tests.class);
  22. }
  23. @Override
  24. protected java.net.URL getSpecFile() {
  25. return getClassResource("ajc198.xml");
  26. }
  27. }