Unit tests updated

This commit is contained in:
Stiver
2014-08-13 22:17:21 +02:00
parent 04b5c9abb1
commit 887c093afd
7 changed files with 120 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
package unit.classes;
public class TestClassSwitch {
public void testCaseOrder(int a) {
switch(a) {
case 13:
System.out.println(13);
return;
case 5:
System.out.println(5);
}
}
}