PHPUnit ile istisnalar sınarken, ne testi geçmek için her deyim veya onaylama amacıyla bir istisna gerektiğini gerektirecek en iyi yolu nedir?
Temelde böyle bir şey yapmak istiyorum:
public function testExceptions()
{
$this->setExpectedException('Exception');
foo(-1); //throws exception
foo(1); //does not throw exception
}
//Test will fail because foo(1) did not throw an exception
Ben iş yapar aşağıdaki ile geldi, ancak IMO oldukça çirkin ettik.
public function testExceptions()
{
try {
foo(-1);
} catch (Exception $e) {
$hit = true;
}
if (!isset($hit))
$this->fail('No exception thrown');
unset($hit);
try {
foo(1);
} catch (Exception $e) {
$hit = true;
}
if (!isset($hit))
$this->fail('No exception thrown');
unset($hit);
}