php-src/Zend/tests/class_alias_017.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

34 lines
358 B
PHP

--TEST--
Testing alias with get_called_class() and get_class()
--FILE--
<?php
class foo {
public function __construct() {
echo get_called_class(), "\n";
}
static public function test() {
echo get_class(), "\n";
}
}
class_alias('foo', 'bar');
new bar;
class baz extends bar {
}
new baz;
baz::test();
bar::test();
?>
--EXPECT--
foo
baz
foo
foo