Unit tests updated
This commit is contained in:
@@ -21,6 +21,24 @@ public class TestClassTypes {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean testBit(int var0) {
|
||||||
|
return (var0 & 1) == 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testSwitchConsts(int a) {
|
||||||
|
|
||||||
|
switch (a) {
|
||||||
|
case 88:
|
||||||
|
System.out.println("1");
|
||||||
|
break;
|
||||||
|
case 656:
|
||||||
|
System.out.println("2");
|
||||||
|
break;
|
||||||
|
case 65201:
|
||||||
|
case 65489:
|
||||||
|
System.out.println("3");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void testAssignmentType(List list) {
|
public void testAssignmentType(List list) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user