1

我正在使用 phpunit 进行 TDD 方法。目前,我已经编写的一些测试失败了,因为我在等待其他人赶上我的测试。因此,我想为现在失败的每个断言打印一个失败的断言消息,例如

$this->assertTrue($now_its_false, '> my friend should fix method X to return Y');

这适用于标准断言,但我不知道在测试异常时如何打印此类消息。例如,我测试了一个应该引发异常的方法,但它没有。我的代码如下所示:

public function testSomethingIncorrect() {
  $this->setExpectedException('SomeException');
  $object->doSomethingThatShouldRaiseException();
  $this->fail('This call should raise exception!');
}

如何在此处打印测试失败消息?

4

1 回答 1

1

没有“明确”的方法来实现这一目标。您会注意到它PHPUnit_Framework_Constraint_Exception不采用任何描述参数。

无论如何,您可以“围绕”进行。

try {
    $object->doSomethingThatShouldRaiseException();
    $this->fail('This call should raise exception!');
} catch ('SomeException') {

}
于 2012-12-07T10:58:13.143 回答