Unit test

This commit is contained in:
Stiver
2014-10-15 08:35:45 +02:00
parent c975f11ecc
commit 6d03229b91
4 changed files with 67 additions and 3 deletions

View 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;
}
}
}