8

当 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 创建的,所以修改并不容易,也不喜欢被写保护以防止覆盖。可能有一个简单的解决方案,但我把这个放在“不值得努力”的篮子里。

4

2 回答 2

2

这只会在您启用 xdebug 并将xdebug.show_exception_trace其设置为 1 时发生,要反转此行为的影响,您可以禁用 xdebug(仅当您不生成覆盖率报告时)或设置xdebug.show_exception_trace为 0。

xdebug_enable();
ini_set('xdebug.show_exception_trace', 0);

所以添加上面的代码将为您禁用堆栈跟踪。

代码示例:

// below statements are given here just for illustration this should be added in
// proper places
xdebug_enable();
ini_set('xdebug.show_exception_trace', 0);

class FooTest extends PHPUnit_Framework_TestCase
{
    public function testBar()
    {
        $this->assertTrue(false);
    }
}
?>

参考:为什么 PHPUnit 隐藏我的 xdebug 回溯?

于 2013-06-02T19:40:31.160 回答
0

我下载了 PHPUnit 3.7.21。我已经运行了这个测试:

class FooTest extends \PHPUnit_Framework_TestCase
{
    public function testBar()
    {
        $this->assertTrue(false);
    }
}

一切看起来都不错,这是我的输出:

./vendor/bin/phpunit ./test.php
PHPUnit 3.7.21 由 Sebastian Bergmann 编写。

F

时间:0秒,内存:2.50Mb

有 1 次失败:

1) FooTest::testBar 断言 false 为 true 失败。

/home/cypis/devel/phpunit/test.php:7

失败!测试:1,断言:1,失败:1。

您是否在课堂上扩展了您的测试\PHPUnit_Framework_TestCase

于 2013-05-29T16:53:17.310 回答