DerManoMann - 2008-08-04

Logged In: YES
user_id=1046384
Originator: NO

I disagree with 'works as is'.

In my environment simpletest seems to have problems handling references properly (and others).

$suite->add('MyTest');
results in: Call to a member function getSize() on a non-object

and this:
$suite->add($test1);
$suite->add($test2);
will execute the first test twice.

All this using PHP5.2.6!

So, what works for me is actually to use the deprecated method $suite->addTestClass('MyTest');

mano