diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2023-12-10 16:55:33 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2023-12-11 03:38:37 +0100 |
commit | 8c72d2da438d06885d48ffd3ade30b89a782b874 (patch) | |
tree | d80c381cff3c700115f5584cde1f9eaa38835bec /tests/src | |
parent | 6be5a0a6a62e9afefad53a27f4c75d95ae7dac74 (diff) | |
download | aspectj-8c72d2da438d06885d48ffd3ade30b89a782b874.tar.gz aspectj-8c72d2da438d06885d48ffd3ade30b89a782b874.zip |
Add tests for Java 21 unnamed patterns
TODO: Activate after
https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/test/java/org/aspectj/systemtest/ajc1921/Java21PreviewFeaturesTests.java | 22 | ||||
-rw-r--r-- | tests/src/test/resources/org/aspectj/systemtest/ajc1921/ajc1921.xml | 41 |
2 files changed, 63 insertions, 0 deletions
diff --git a/tests/src/test/java/org/aspectj/systemtest/ajc1921/Java21PreviewFeaturesTests.java b/tests/src/test/java/org/aspectj/systemtest/ajc1921/Java21PreviewFeaturesTests.java index 5ef087602..bdde4b67e 100644 --- a/tests/src/test/java/org/aspectj/systemtest/ajc1921/Java21PreviewFeaturesTests.java +++ b/tests/src/test/java/org/aspectj/systemtest/ajc1921/Java21PreviewFeaturesTests.java @@ -24,6 +24,28 @@ public class Java21PreviewFeaturesTests extends XMLBasedAjcTestCaseForJava21Only runTest("string patterns aspect"); } + /** + * Still not implemented with the Java 21 release Eclipse 2023-12 (4.30), + * see <a href="https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893">GitHub issue 893</a>. + * <p> + * TODO: Activate after JDT Core implementation and merge. + */ + public void testUnnamedPatterns() { + //runTest("unnamed patterns"); + System.out.println("Unnamed patterns still are not implemented with the Java 21 release Eclipse 2023-12 (4.30)"); + } + + /** + * Still not implemented with the Java 21 release Eclipse 2023-12 (4.30), + * see <a href="https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893">GitHub issue 893</a>. + * <p> + * TODO: Activate after JDT Core implementation and merge. + */ + public void testUnnamedPatternsAspect() { + //runTest("unnamed patterns aspect"); + System.out.println("Unnamed patterns still are not implemented with the Java 21 release Eclipse 2023-12 (4.30)"); + } + public static Test suite() { return XMLBasedAjcTestCase.loadSuite(Java21PreviewFeaturesTests.class); } diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc1921/ajc1921.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc1921/ajc1921.xml index a7b5d0d95..edb41fb31 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc1921/ajc1921.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc1921/ajc1921.xml @@ -259,4 +259,45 @@ </run> </ajc-test> + <!-- Java 21 preview --> + <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done --> + <ajc-test dir="features1921/java21" vm="21" title="unnamed patterns"> + <compile files="UnnamedPatternsPreview1.java" options="--enable-preview -21"/> + <run class="UnnamedPatternsPreview1" vmargs="--enable-preview"> + <stdout ordered="yes"> + <line text="0"/> + <line text="1"/> + <line text="java.awt.Point[x=1,y=2]"/> + <line text="java.awt.Point[x=4,y=5]"/> + <line text="java.awt.Point[x=1,y=0]"/> + <line text="java.awt.Point[x=4,y=0]"/> + <line text="Bad number: 123xy"/> + <line text="Doing something within scoped context"/> + <line text="Closing scoped context"/> + <line text="{ONE=NODATA, TWO=NODATA, THREE=NODATA}"/> + </stdout> + </run> + </ajc-test> + + <!-- Java 21 preview --> + <!-- TODO: Activate after https://github.com/eclipse-jdt/eclipse.jdt.core/issues/893 is done --> + <ajc-test dir="features1921/java21" vm="21" title="unnamed patterns aspect"> + <compile files="UnnamedPatternsPreview1Aspect.java" options="--enable-preview -21"/> + <run class="UnnamedPatternsPreview1Aspect" vmargs="--enable-preview"> + <stdout ordered="yes"> + <line text="execution(void UnnamedPatternsPreview1Aspect.main(String[]))"/> + <line text="0"/> + <line text="1"/> + <line text="java.awt.Point[x=1,y=2]"/> + <line text="java.awt.Point[x=4,y=5]"/> + <line text="java.awt.Point[x=1,y=0]"/> + <line text="java.awt.Point[x=4,y=0]"/> + <line text="Bad number: 123xy"/> + <line text="Doing something within scoped context"/> + <line text="Closing scoped context"/> + <line text="{ONE=NODATA, TWO=NODATA, THREE=NODATA}"/> + </stdout> + </run> + </ajc-test> + </suite> |