17

是否可以在同一进程中运行 phpUnit 测试的测试套件,但确定要在自己的进程中运行的特定测试?

通常我使用

@runTestsInSeparateProcesses
@preserveGlobalState disabled

对于整个测试套件,但我只需要单独运行一个方法,并且我希望在单个进程中运行其余的方法来提高速度。

谢谢

4

1 回答 1

31

As you can see in PHPUnit manual you can use the @runInSeparateProcess tag:

class MyTest extends PHPUnit_Framework_TestCase
{
    /**
    * @runInSeparateProcess
    */
    public function testInSeparateProcess()
    {
        // ...
    }
}
于 2013-10-10T19:47:08.200 回答