summaryrefslogtreecommitdiffstats
path: root/tests/parser/CallStatementTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parser/CallStatementTest.php')
-rw-r--r--tests/parser/CallStatementTest.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/parser/CallStatementTest.php b/tests/parser/CallStatementTest.php
new file mode 100644
index 0000000..c558ce1
--- /dev/null
+++ b/tests/parser/CallStatementTest.php
@@ -0,0 +1,15 @@
+<?php
+
+class CallStatementTest extends TestCase
+{
+
+ public function testCall()
+ {
+ $this->runParserTest('parseCall');
+ }
+
+ public function testCall2()
+ {
+ $this->runParserTest('parseCall2');
+ }
+}