Skip to content

Commit f6d3c7f

Browse files
hansonrhansonr
authored andcommitted
test files
1 parent 3753f36 commit f6d3c7f

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

sources/net.sf.j2s.java.core/src/test/Test_Applet_1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void init() {
3535
JScrollBar bar = new JScrollBar(JScrollBar.HORIZONTAL);
3636
bar.addAdjustmentListener(this);
3737
bar.addPropertyChangeListener(this);
38-
JLabel label = new JLabel("hello");
38+
JLabel label = new JLabel("hello\ud83d\udd01");
3939
((JPanel) getContentPane()).setBorder(new LineBorder(Color.blue,2));
4040
label.setBorder(new LineBorder(Color.red, 3));
4141
label.setBounds(0, 60, 200, 60);

sources/net.sf.j2s.java.core/src/test/Test_Ints.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ public Test_Ints(int... ints){
1212
assert(ints.length == 0 || ints[0] == 3);
1313
};
1414

15+
private final static int USER = -13;
16+
private final static int ALT = 16;
17+
1518
public static void main(String[] args) {
1619
int i3 = new Integer("3");
20+
int it = +USER;
1721
new Test_Ints();
1822
new Test_Ints(3,5,6);
1923
new Test_Ints(3.5f,5.5f,6.5f);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test2 here

0 commit comments

Comments
 (0)