From 63b8aa57531a233fc2cae445c3a3bc98afeafd9d Mon Sep 17 00:00:00 2001 From: A Pottinger Date: Thu, 3 Feb 2022 08:47:01 -0800 Subject: [PATCH] Add failing test for #352. It appears that the preproc is only bringing in the first arg in rewrite and this commit adds a test to check that other arguments also come over. --- java/test/processing/mode/java/ParserTests.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/java/test/processing/mode/java/ParserTests.java b/java/test/processing/mode/java/ParserTests.java index ee80d7143..11a7eee38 100644 --- a/java/test/processing/mode/java/ParserTests.java +++ b/java/test/processing/mode/java/ParserTests.java @@ -325,6 +325,11 @@ public class ParserTests { expectGood("fullscreen", true); } + @Test + public void fullscreenArg() { + expectGood("fullscreen_arg", true); + } + @Test public void customMain() { expectGood("custommain", true);