我是否可以使用任何可以返回我的phpunit测试是否在使用以下单独进程运行的函数?
@runTestsInSeparateProcesses
@preserveGlobalState disabled
我正在尝试编写一个条件语句,例如
if ( _being_run_in_separate_process_ ){
}
else{
}
非常感谢!
答案 0 :(得分:1)
您可以访问该媒体资源PHPUnit_Framework_TestCase::runTestInSeparateProcess
。像这样:
if($this->runTestInSeparateProcess) {
...
}