summaryrefslogtreecommitdiffstats
path: root/test/unit/results/TestClassSwitch.dec
diff options
context:
space:
mode:
authorStiver <stiver.mail@gmail.com>2014-08-13 22:17:21 +0200
committerStiver <stiver.mail@gmail.com>2014-08-13 22:17:21 +0200
commit887c093afdb49b9bd2a2a4930c0a6a331662399d (patch)
tree8d0901288d901a82397c4471aa568d79ab66dbe3 /test/unit/results/TestClassSwitch.dec
parent04b5c9abb177ced644caa520c252f783327a0cbf (diff)
downloadfernflower-887c093afdb49b9bd2a2a4930c0a6a331662399d.tar
fernflower-887c093afdb49b9bd2a2a4930c0a6a331662399d.tar.gz
fernflower-887c093afdb49b9bd2a2a4930c0a6a331662399d.tar.lz
fernflower-887c093afdb49b9bd2a2a4930c0a6a331662399d.tar.xz
fernflower-887c093afdb49b9bd2a2a4930c0a6a331662399d.zip
Unit tests updated
Diffstat (limited to 'test/unit/results/TestClassSwitch.dec')
-rw-r--r--test/unit/results/TestClassSwitch.dec16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/unit/results/TestClassSwitch.dec b/test/unit/results/TestClassSwitch.dec
new file mode 100644
index 0000000..386a341
--- /dev/null
+++ b/test/unit/results/TestClassSwitch.dec
@@ -0,0 +1,16 @@
+package unit.classes;
+
+
+public class TestClassSwitch {
+
+ public void testCaseOrder(int var1) {
+ switch(var1) {
+ case 5:
+ System.out.println(5);
+ default:
+ return;
+ case 13:
+ System.out.println(13);
+ }
+ }
+}