Get the tests runnable again.

This commit is contained in:
A Pottinger
2021-10-10 11:30:24 -07:00
parent 6be2ad128b
commit 5d56e43a7d
18 changed files with 30 additions and 6 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -390,4 +390,9 @@ public class ParserTests {
expectGood("colorimport");
}
/*@Test
public void testPGraphicsStandalone() {
expectGood("pgraphics");
}*/
}
+10
View File
@@ -0,0 +1,10 @@
PGraphics gfx;
void setup() {
gfx = createGraphics(width, height);
gfx.smooth();
}
void draw() {
}