A couple of unit tests

This commit is contained in:
Stiver
2014-08-09 17:34:24 +02:00
parent 3b9b180d94
commit 70bf7f3f69
7 changed files with 357 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package test.input;
public class TestLoop {
public static void main(String[] args) {
boolean a = true;
while(true) {
try {
if(!a) {
return;
}
} finally {
System.out.println("1");
}
}
}
}