在PhpStorm中调试项目单元测试时如何显示codecept_debug消息?

时间:2017-11-29 09:24:18

标签: unit-testing phpstorm codeception

通过 PhpStorm 运行单元测试时,函数codecept_debug的输出将被忽略。

我已将测试跑步者选项设置为:

--colors --debug -v

在我codeception.yml我也有:

settings:
    bootstrap: _bootstrap.php
    colors: true
    debug: true
    memory_limit: 1024M

在命令行上显示codecept_debug 的输出

2 个答案:

答案 0 :(得分:1)

尚未实施:https://youtrack.jetbrains.com/issue/WI-36233。请对该问题进行投票/评论

答案 1 :(得分:0)

目前,PHPStorm仍然不支持此功能,但是您可以通过以下方法解决此问题:

  • 将您的codecept_debug( $variable )呼叫更改为echo print_r( $variable, true );

以与codecept_debug相同的方式,在运行测试时,输出应显示在PHPStorm的终端上。