PHPUnit似乎通过序列化预期值和实际值来打印失败的测试用例,并显示它们之间的差异.此外,序列化会使用省略号截断值,隐藏我想要的信息.
/Foo/Bar/Baz.PHP:31 8) Foo\Bar\Baz::test with data set #7 ('foo,bar,baz,qux',array(array('foo','bar'),array('baz','qux'))) Failed asserting that two arrays are equal. --- Expected +++ Actual @@ @@ Array ( - 0 => Array (...) - 1 => Array (...) + 'j' => 16 + 'args' => Array (...) )
我希望看到完整的预期值和完整的实际值.我也希望它扩展那些……被忽视的价值观.我怎么做到这一点?
根据这个问题:
https://github.com/sebastianbergmann/phpunit/issues/669,它看起来像是一个XDebug问题.
原文链接:https://www.f2er.com/php/136969.html在源代码中,isEquals重定向到:https://github.com/sebastianbergmann/phpunit/blob/58f3a0e212a8df66858f22fc9a58f138bb5a2e9d/src/Util/GlobalState.php#L361,并且没有“缩短”形式
您可以使用PHP -d xdebug.overload_var_dump = 0 /usr/bin/PHPunit testCase.PHP或PHPunit -d xdebug.overload_var_dump = 0 testCase.PHP进行测试以覆盖xdebug设置