コード例 #1
0
ファイル: test.php プロジェクト: hafeez3000/atoum
 private function canRunEngine(test\engine $engine)
 {
     return $engine->isAsynchronous() === false || $this->maxAsynchronousEngines === null || $this->asynchronousEngines < $this->maxAsynchronousEngines;
 }
コード例 #2
0
ファイル: test.php プロジェクト: ronan-gloo/atoum
 private function canRunEngine(test\engine $engine)
 {
     return $this->runTestMethods && ($engine->isAsynchronous() === false || ($this->maxAsynchronousEngines === null || $this->asynchronousEngines < $this->maxAsynchronousEngines));
 }