Skip to content

Commit 02c8fec

Browse files
committed
Expand color import test.
1 parent 809d460 commit 02c8fec

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

java/test/resources/colorimport.expected

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ public class colorimport extends PApplet {
2020

2121

2222
boolean test = true;
23+
int c1 = color(255, 255, 255);
24+
int c2 = test ? 0xFFA011CD : 0xC0C0C0C0;
2325

2426
noLoop();
2527
}

java/test/resources/colorimport.pde

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
import test.color;
22

33
boolean test = true;
4+
color c1 = color(255, 255, 255);
5+
color c2 = test ? #A011CD : #C0C0C0C0;

0 commit comments

Comments
 (0)