4

我正在使用这个 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 在运行测试类的方法时会做一些有趣的技巧,所以这可能就是调试器没有返回方法中的变量的原因。任何建议将不胜感激,谢谢。

4

2 回答 2

0

你需要做这样的事情

class testClass extends \PHPUnit_Framework_TestCase
{
    $a = 0;
    $b = 0;
    $c = 0;

  function dosomething() {
    $a = 5;
    $b = 6;
    $c = 7;
  }
}

或者你需要包含一个变量文件

你的 var.php 文件

<?

  $a = 0;
  $b = 0;
  $c = 0;

?>

于 2013-01-23T01:34:14.433 回答
0

问题原来是我使用的 xdebug 版本,显然这是 2.0 中的一个已知问题,已在 2.1 中修复我正在调试的虚拟机是 ubuntu 10.04 LTS

在这个版本的 Ubuntu 发布时,xdebug 2.1 仍然是一个候选版本。我编译了最新版本的 xdebug,并且能够查看方法中的变量。

于 2013-01-29T19:22:07.527 回答