예제 #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));
 }