2

我想在不同的进程中运行我的测试。因此,我想用“@runTestsInSeparateProcesses”注释我的测试。但是,我以前从未注释过 Phpunit 测试,也无法找到关于实际放置注释的位置的良好描述。我已经看到了不同的注释做了什么,只是没有把它们放在哪里。有人可以给我一个例子吗?

谢谢!

4

1 回答 1

6

注释应用于您的测试用例的文档块:

/**
 * Short Description
 * 
 * @param string $input The test input
 * 
 * @return bool The result
 * 
 * @runTestsInSeparateProcesses
 */
public function test_myMethod ($input) {
  // Test code here
}

阅读有关 DocBlocks 的更多信息:https ://docs.phpdoc.org/

于 2012-05-23T17:40:35.220 回答