summaryrefslogtreecommitdiff
path: root/tests/php/phpt/class_obj/004-static-funct.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/phpt/class_obj/004-static-funct.phpt')
-rw-r--r--tests/php/phpt/class_obj/004-static-funct.phpt26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/php/phpt/class_obj/004-static-funct.phpt b/tests/php/phpt/class_obj/004-static-funct.phpt
deleted file mode 100644
index 8c78210..0000000
--- a/tests/php/phpt/class_obj/004-static-funct.phpt
+++ /dev/null
@@ -1,26 +0,0 @@
---TEST--
-Test class with static function
---SKIPIF--
-<?php if (!extension_loaded("extension_for_tests")) print "skip"; ?>
---FILEEOF--
-<?php
-
-// this will call PublicClass::staticMethod()
-TestBaseClass\ClassWithStatic::static1();
-
-// this will call PrivateClass::staticMethod()
-TestBaseClass\ClassWithStatic::static2();
-
-// this will call regularFunction()
-TestBaseClass\ClassWithStatic::static3();
-
-// this will also call PrivateClass::staticMethod()
-TestBaseClass\staticFun1();
-
-
-//echo PHP_EOL;
---EXPECT--
-testStaticPubClass::staticMethod()
-testStatic regular function
-testStaticPrivClass::staticMethod()
-testStaticPrivClass::staticMethod() \ No newline at end of file