当 PHPUnit 断言失败时,我不需要下面的堆栈跟踪,只需要我的自定义消息("Type: R Expected: 333.33333333333 Actual: 345")
和 PHPUnit 的失败消息("Failed assert that false is true")
。
除了将我的所有测试放在 try/catch 块中并在显示异常消息之前从异常消息中剥离堆栈跟踪之外,还有其他方法吗?
除了 PHPUnit_Framework_ExpectationFailedException 之外,我真的不希望堆栈跟踪消失,但是如果这不可能,我可以在所有 PHPUnit 测试期间处理丢失堆栈跟踪。
SO 上的其他帖子似乎建议了针对相反问题的解决方案,当 xdebug 将其关闭时获取堆栈跟踪。
PHPUnit_Framework_ExpectationFailedException : Type: R Expected: 333.33333333333 Actual: 345
Failed asserting that false is true.
#0 /usr/share/php/PHPUnit/Framework/Constraint.php(91): PHPUnit_Framework_Constraint->fail(false, 'Type: R Expecte...')
#1 /usr/share/php/PHPUnit/Framework/Assert.php(2134): PHPUnit_Framework_Constraint->evaluate(false, 'Type: R Expecte...')
#2 /usr/share/php/PHPUnit/Framework/Assert.php(888): PHPUnit_Framework_Assert::assertThat(false, Object(PHPUnit_Framework_Constraint_IsTrue), 'Type: R Expecte...')
#3 /home/simon/Development/golfants/website/unit_tests/PostTest.php(33): PHPUnit_Framework_Assert::assertTrue(false, 'Type: R Expecte...')
#4 [internal function]: PostTest->testRandomAntTypeSelected()
#5 /usr/share/php/PHPUnit/Framework/TestCase.php(976): ReflectionMethod->invokeArgs(Object(PostTest), Array)
#6 /usr/share/php/PHPUnit/Framework/TestCase.php(831): PHPUnit_Framework_TestCase->runTest()
#7 /usr/share/php/PHPUnit/Framework/TestResult.php(648): PHPUnit_Framework_TestCase->runBare()
#8 /usr/share/php/PHPUnit/Framework/TestCase.php(776): PHPUnit_Framework_TestResult->run(Object(PostTest))
#9 /usr/share/php/PHPUnit/Framework/TestSuite.php(775): PHPUnit_Framework_TestCase->run(Object(PHPUnit_Framework_TestResult))
#10 /usr/share/php/PHPUnit/Framework/TestSuite.php(745): PHPUnit_Framework_TestSuite->runTest(Object(PostTest), Object(PHPUnit_Framework_TestResult))
#11 /usr/share/php/PHPUnit/TextUI/TestRunner.php(349): PHPUnit_Framework_TestSuite->run(Object(PHPUnit_Framework_TestResult), false, Array, Array, false)
#12 /usr/share/php/PHPUnit/TextUI/Command.php(176): PHPUnit_TextUI_TestRunner->doRun(Object(PHPUnit_Framework_TestSuite), Array)
#13 /tmp/ide-phpunit.php(95): PHPUnit_TextUI_Command->run(Array, true)
#14 /tmp/ide-phpunit.php(434): IDE_PHPUnit_TextUI_Command::main()
#15 {main}
更新
看来这个问题是由 IDE(IntelliJ Idea 和可能的 PHPStorm)在单元测试时没有直接调用 PHPUnit 而是通过它自己的脚本 ide_phpunit.php 引起的。从命令行直接调用 PHPUnit 不会出现此问题。这个 ide_phpunit.php 脚本每次都是由 IDE 创建的,所以修改并不容易,也不喜欢被写保护以防止覆盖。可能有一个简单的解决方案,但我把这个放在“不值得努力”的篮子里。