我正在使用这个 vim 插件https://github.com/ludovicPelle/vim-xdebug和 xdebug
Xdebug 和 vim 插件在常规脚本中运行良好。我可以单步执行并打印出变量。
当我尝试单步执行基本单元测试时,它会很好地到达断点并停止,我可以单步执行代码,但我无法再查看变量的内容。
我试图让它与一个非常基本的单元测试一起工作
class testClass extends \PHPUnit_Framework_TestCase
{
public function testSomething()
{
$a = 5;
$b = 6;
$c = 7;
}
}
当我走到该方法的末尾并尝试打印出 $a 的内容时,我收到以下错误。
13 : send =====> property_get -i 13 -d 0 -n a
13 : recv <===== {{{ <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="property_get" transaction_id="13" status="break" reason="ok"><error code="300"><message><![CDATA[can not get property]]></message></error></response>
}}}
response status=break xmlns=urn:debugger_protocol_v1 xmlns:xdebug=http://xdebug.org/dbgp/xdebug reason=ok command=property_get transaction_id=13
error code=300 : Can not get property (when the requested property to get did not exist, this is NOT used for an existing but uninitialized property, which just gets the type "uninitialised" (See: PreferredTypeNames)).
message
can not get property
当我打印出整个上下文时,3个变量显示如下
$command = 'context_get';
a = /* uninitialized */'';
b = /* uninitialized */'';
c = /* uninitialized */'';
我知道 phpunit 在运行测试类的方法时会做一些有趣的技巧,所以这可能就是调试器没有返回方法中的变量的原因。任何建议将不胜感激,谢谢。