通过 PhpStorm 运行单元测试时,函数codecept_debug
的输出将被忽略。
我已将测试跑步者选项设置为:
--colors --debug -v
在我codeception.yml
我也有:
settings:
bootstrap: _bootstrap.php
colors: true
debug: true
memory_limit: 1024M
在命令行上显示codecept_debug
的输出。
答案 0 :(得分:1)
尚未实施:https://youtrack.jetbrains.com/issue/WI-36233。请对该问题进行投票/评论
答案 1 :(得分:0)
目前,PHPStorm仍然不支持此功能,但是您可以通过以下方法解决此问题:
codecept_debug( $variable )
呼叫更改为echo print_r( $variable, true );
以与codecept_debug
相同的方式,在运行测试时,输出应显示在PHPStorm的终端上。