1

有没有我可以使用的函数来返回我的 phpunit 测试是否正在使用以下命令在单独的进程中运行?

@runTestsInSeparateProcesses

@preserveGlobalState disabled 

我正在尝试编写一个条件语句,例如

if ( _being_run_in_separate_process_ ){

}

else{

}

非常感谢!

4

1 回答 1

1

您可以访问该属性PHPUnit_Framework_TestCase::runTestInSeparateProcess。像这样:

if($this->runTestInSeparateProcess) {
    ...
}
于 2013-07-03T17:13:37.877 回答