|
From: Marcus B. <ma...@wo...> - 2009-03-11 20:52:11
|
Hi... Gabor Szabo wrote: > Is there a way to declare up front that I'll have 100 calls to some > assert() and ensure > that I get failure report if I don't actually deliver the 100 pass-es? No, but you wouldn't normally have 100 asserts in a single test. Usually you have lot's of small test methods. You can run those individually... php my_tests.php --test=testJustThisOnePlease ...or in the browser... http://localhost/my_tests.php?t=testJustThisOnePlease > > Gabor yours, Marcus |