]> granicus.if.org Git - php/commitdiff
Tests constant initialisation
authorZoe Slattery <zoe@php.net>
Wed, 27 Jun 2007 14:50:21 +0000 (14:50 +0000)
committerZoe Slattery <zoe@php.net>
Wed, 27 Jun 2007 14:50:21 +0000 (14:50 +0000)
Zend/tests/selfParent_001.phpt [new file with mode: 0755]
Zend/tests/selfParent_002.phpt [new file with mode: 0755]

diff --git a/Zend/tests/selfParent_001.phpt b/Zend/tests/selfParent_001.phpt
new file mode 100755 (executable)
index 0000000..9d8cd6e
--- /dev/null
@@ -0,0 +1,27 @@
+--TEST--
+Test when constants are initialised. See also selfParent_002.phpt.
+--FILE--
+<?php
+class A {
+       const myConst = "const in A";
+       const myDynConst = self::myConst;
+       
+       public static function test() {
+               var_dump(self::myDynConst);
+       }
+}
+
+class B extends A {
+       const myConst = "const in B";
+
+       public static function test() {
+               var_dump(parent::myDynConst);
+       }
+}
+
+A::test();
+B::test();
+?>
+--EXPECT--
+string(10) "const in A"
+string(10) "const in A"
diff --git a/Zend/tests/selfParent_002.phpt b/Zend/tests/selfParent_002.phpt
new file mode 100755 (executable)
index 0000000..18a8f09
--- /dev/null
@@ -0,0 +1,27 @@
+--TEST--
+Test when constants are initialised. See also selfParent_001.phpt.
+--FILE--
+<?php
+class A {
+       const myConst = "const in A";
+       const myDynConst = self::myConst;
+       
+       public static function test() {
+               var_dump(self::myDynConst);
+       }
+}
+
+class B extends A {
+       const myConst = "const in B";
+
+       public static function test() {
+               var_dump(parent::myDynConst);
+       }
+}
+
+B::test();
+A::test();
+?>
+--EXPECT--
+string(10) "const in A"
+string(10) "const in A"