|
From: Marcus B. <ma...@wo...> - 2009-09-03 21:03:00
|
Hi...
Guilhem Martin wrote:
> I've just upgraded from PHP 5.2.9-2 to 5.3.0 and I cannot run my simpletest
> suite no more.
Which version are you running? Anything flagged in the file
HELP_MY_TESTS_DONT_WORK_ANYMORE?
> The error refers to:
>
> class FlexibleComputing_SDK_Test extends GroupTest {
>
> function FlexibleComputing_SDK_Test() {
> parent::GroupTest(''); // <-- line 7
>
> If I use PHP5.2.9-2/php.exe, then it's fine.
>
> Any idea about this?
Try changing it to...
class FlexibleComputing_SDK_Test extends TestSuite {
function FlexibleComputing_SDK_Test() {
parent::__construct(''); // <-- line 7
...
PHP 5 style.
>
> Thanks,
>
> Guilhem.
Let us know if this helps.
yours, Marcus
|