我正在使用 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!');
}
如何在此处打印测试失败消息?