Unit test
This commit is contained in:
20
testData/src/pkg/TestClassSimpleBytecodeMapping.java
Normal file
20
testData/src/pkg/TestClassSimpleBytecodeMapping.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package pkg;
|
||||
|
||||
public class TestClassSimpleBytecodeMapping {
|
||||
|
||||
public TestClassSimpleBytecodeMapping() {}
|
||||
|
||||
public int test() {
|
||||
|
||||
System.out.println("before");
|
||||
|
||||
if(Math.random() > 0) {
|
||||
System.out.println("0");
|
||||
return 0;
|
||||
} else {
|
||||
System.out.println("1");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user