当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创建,因此修改并不容易,也不像写保护以防止覆盖。可能有一个简单的解决方案,但我把这个放在“不值得努力”的篮子里。
答案 0 :(得分:1)
只有在启用了xdebug且xdebug.show_exception_trace
设置为1时才会发生这种情况,以反转此行为的影响,您可以禁用xdebug(仅当您不生成覆盖率报告时)或设置{{1}到0。
xdebug.show_exception_trace
所以添加上面的代码会为你禁用堆栈跟踪。
代码示例:
xdebug_enable();
ini_set('xdebug.show_exception_trace', 0);
答案 1 :(得分:0)
我下载了PHPUnit 3.7.21。我跑了这个测试:
class FooTest extends \PHPUnit_Framework_TestCase
{
public function testBar()
{
$this->assertTrue(false);
}
}
一切看起来都不错,这是我的输出:
./ vendor / bin / phpunit ./test.php
Sebastian Bergmann的PHPUnit 3.7.21。˚F
时间:0秒,内存:2.50Mb
有1次失败:
1)FooTest :: testBar断言false为真。
/home/cypis/devel/phpunit/test.php:7
FAILURES!测试:1,断言:1,失败:1。
您是否使用\PHPUnit_Framework_TestCase
课程扩展考试?