A couple of unit tests
This commit is contained in:
75
test/unit/results/TestClassLambda.dec
Normal file
75
test/unit/results/TestClassLambda.dec
Normal file
@@ -0,0 +1,75 @@
|
||||
package unit.classes;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.OptionalInt;
|
||||
import java.util.function.Consumer;
|
||||
import java.util.function.IntBinaryOperator;
|
||||
import java.util.function.Predicate;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
public class TestClassLambda {
|
||||
|
||||
public int field = 0;
|
||||
|
||||
|
||||
public void testLambda() {
|
||||
List var1 = Arrays.asList(new Integer[]{Integer.valueOf(1), Integer.valueOf(2), Integer.valueOf(3), Integer.valueOf(4), Integer.valueOf(5), Integer.valueOf(6), Integer.valueOf(7)});
|
||||
int var2 = (int)Math.random();
|
||||
var1.forEach((var2x) -> {
|
||||
int var3 = 2 * var2x.intValue();
|
||||
System.out.println(var3 + var2 + this.field);
|
||||
});
|
||||
}
|
||||
|
||||
public void testLambda1() {
|
||||
int var1 = (int)Math.random();
|
||||
Runnable var2 = () -> {
|
||||
System.out.println("hello" + var1);
|
||||
};
|
||||
Runnable var3 = () -> {
|
||||
System.out.println("hello1" + var1);
|
||||
};
|
||||
}
|
||||
|
||||
public void testLambda2() {
|
||||
reduce((var0, var1) -> {
|
||||
return Math.max(var0, var1);
|
||||
});
|
||||
}
|
||||
|
||||
public void testLambda3() {
|
||||
reduce(Math::max);
|
||||
}
|
||||
|
||||
public void testLambda4() {
|
||||
reduce(TestClassLambda::localMax);
|
||||
}
|
||||
|
||||
public void testLambda5() {
|
||||
String var1 = "abcd";
|
||||
function(var1::toString);
|
||||
}
|
||||
|
||||
public void testLambda6() {
|
||||
ArrayList var1 = new ArrayList();
|
||||
int var2 = var1.size() * 2;
|
||||
int var3 = var1.size() * 5;
|
||||
var1.removeIf((var2x) -> {
|
||||
return var2 >= var2x.length() && var2x.length() <= var3;
|
||||
});
|
||||
}
|
||||
|
||||
public static OptionalInt reduce(IntBinaryOperator var0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static String function(Supplier var0) {
|
||||
return (String)var0.get();
|
||||
}
|
||||
|
||||
public static int localMax(int var0, int var1) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
39
test/unit/results/TestClassLoop.dec
Normal file
39
test/unit/results/TestClassLoop.dec
Normal file
@@ -0,0 +1,39 @@
|
||||
package unit.classes;
|
||||
|
||||
|
||||
public class TestClassLoop {
|
||||
|
||||
public static void testFinally() {
|
||||
boolean var0 = Math.random() > 0.0D;
|
||||
|
||||
while(true) {
|
||||
try {
|
||||
if(!var0) {
|
||||
return;
|
||||
}
|
||||
} finally {
|
||||
System.out.println("1");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void testFinallyContinue() {
|
||||
boolean var0 = Math.random() > 0.0D;
|
||||
|
||||
while(true) {
|
||||
while(true) {
|
||||
try {
|
||||
System.out.println("1");
|
||||
break;
|
||||
} finally {
|
||||
if(var0) {
|
||||
System.out.println("3");
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
System.out.println("4");
|
||||
}
|
||||
}
|
||||
}
|
||||
43
test/unit/results/TestClassVar.dec
Normal file
43
test/unit/results/TestClassVar.dec
Normal file
@@ -0,0 +1,43 @@
|
||||
package unit.classes;
|
||||
|
||||
|
||||
public class TestClassVar {
|
||||
|
||||
private boolean field_boolean = Math.random() > 0.0D;
|
||||
public int field_int = 0;
|
||||
|
||||
|
||||
public void testFieldSSAU() {
|
||||
for(int var1 = 0; var1 < 10; ++var1) {
|
||||
try {
|
||||
System.out.println();
|
||||
} finally {
|
||||
if(this.field_boolean) {
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public Long testFieldSSAU1() {
|
||||
return new Long((long)(this.field_int++));
|
||||
}
|
||||
|
||||
public void testComplexPropagation() {
|
||||
int var1 = 0;
|
||||
|
||||
while(var1 < 10) {
|
||||
int var2;
|
||||
for(var2 = var1; var1 < 10 && var1 == 0; ++var1) {
|
||||
;
|
||||
}
|
||||
|
||||
if(var2 != var1) {
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user