If the same method name is implemented in a parent class then the subclass can't have more required parameters than that or else we get a compatibility error when the module is loaded. The testsuite wasn't catching this problem because it was no longer trying to load the modules for testcases without _runme.php, because the mechanism to do that relied on there being a generated .php wrapper, which we no longer have by default. Fix that to provide a regression test for this fix. See #2151
60 lines
1.4 KiB
PHP
60 lines
1.4 KiB
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
// New functions
|
|
check::functions(array('g'));
|
|
// New classes
|
|
check::classes(array('director_abstract','Foo','Example0','Example1','Example2','Example4','Example3_i','A'));
|
|
// No new vars
|
|
check::globals(array());
|
|
|
|
class MyFoo extends Foo {
|
|
function ping() {
|
|
return "MyFoo::ping()";
|
|
}
|
|
}
|
|
|
|
$a = new MyFoo();
|
|
|
|
check::equal($a->ping(), "MyFoo::ping()", "MyFoo::ping failed");
|
|
|
|
check::equal($a->pong(), "Foo::pong();MyFoo::ping()", "MyFoo::pong failed");
|
|
|
|
class MyExample1 extends Example1 {
|
|
function Color($r, $g = NULL, $b = NULL) {
|
|
return $r;
|
|
}
|
|
}
|
|
|
|
class MyExample2 extends Example1 {
|
|
function Color($r, $g = NULL, $b = NULL) {
|
|
return $g;
|
|
}
|
|
}
|
|
|
|
class MyExample3 extends Example1 {
|
|
function Color($r, $g = NULL, $b = NULL) {
|
|
return $b;
|
|
}
|
|
}
|
|
|
|
$me1 = new MyExample1();
|
|
check::equal($me1->Color(1, 2, 3), 1, "Example1_get_color failed");
|
|
|
|
$me2 = new MyExample2(1, 2);
|
|
check::equal($me2->Color(1, 2, 3), 2, "Example2_get_color failed");
|
|
|
|
$me3 = new MyExample3();
|
|
check::equal($me3->Color(1, 2, 3), 3, "Example3_get_color failed");
|
|
|
|
$class = new ReflectionClass('Example1');
|
|
check::equal($class->isAbstract(), true, "Example1 abstractness failed");
|
|
|
|
$class = new ReflectionClass('Example2');
|
|
check::equal($class->isAbstract(), true, "Example2 abstractness failed");
|
|
|
|
$class = new ReflectionClass('Example3_i');
|
|
check::equal($class->isAbstract(), true, "Example3_i abstractness failed");
|
|
|
|
check::done();
|