如何用phpunit强制失败
有一个更正式的方式来强制phpunit失败比$this->assertTrue(false)
?
我相信这应该在一个testing用例中起作用:
$this->fail('Message');
是的,有一种方式,
$this->fail("your message");
如果你想看到你的网页失败了
print_r(getResponse()->getContent());
另一种做法(特别是在编写测试工具时很有帮助)可以这样做:
use PHPUnit_Framework_ExpectationFailedException as PHPUnitException; try { // something here } catch (SpecificException $e) { // force a fail: throw new PHPUnitException("This was not expected."); }