summaryrefslogtreecommitdiff
path: root/tests/lang/003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/003.phpt')
-rw-r--r--tests/lang/003.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/lang/003.phpt b/tests/lang/003.phpt
deleted file mode 100644
index 23bc99e9f4..0000000000
--- a/tests/lang/003.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-Simple Switch Test
---POST--
---GET--
---FILE--
-<?php $a=1;
- switch($a):
- case 0;
- echo "bad";
- break;
- case 1;
- echo "good";
- break;
- default;
- echo "bad";
- break;
- endswitch?>
---EXPECT--
-good