diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-11-26 07:34:01 +0100 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-11-26 08:51:18 +0100 |
commit | cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de (patch) | |
tree | f2958db2719adda5efd3b5f07cdab336efece4e6 /tests/src/test/java/org | |
parent | bc2c65717d96e5e9cc1a454e5b0f8f258f2d802e (diff) | |
download | aspectj-cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de.tar.gz aspectj-cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de.zip |
Incorporate JDT Core fix + test for #105
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/src/test/java/org')
-rw-r--r-- | tests/src/test/java/org/aspectj/systemtest/ajc198/Bugs198Tests.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/src/test/java/org/aspectj/systemtest/ajc198/Bugs198Tests.java b/tests/src/test/java/org/aspectj/systemtest/ajc198/Bugs198Tests.java new file mode 100644 index 000000000..69d484590 --- /dev/null +++ b/tests/src/test/java/org/aspectj/systemtest/ajc198/Bugs198Tests.java @@ -0,0 +1,26 @@ +/******************************************************************************* + * Copyright (c) 2021 Contributors + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v 2.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + *******************************************************************************/ +package org.aspectj.systemtest.ajc198; + +import org.aspectj.testing.XMLBasedAjcTestCase; + +/** + * @author Alexander Kriegisch + */ +public class Bugs198Tests extends XMLBasedAjcTestCase { + + public void testGitHub_105() { + runTest("ITD annotation with mandatory parameter via aspectpath"); + } + + @Override + protected java.net.URL getSpecFile() { + return getClassResource("ajc198.xml"); + } + +} |