setCheckInterval() 공개 메소드

By default, the interval is 1 second.
public setCheckInterval ( float $checkInterval )
$checkInterval float The check interval.
예제 #1
0
 protected function setUp()
 {
     $finder = new PhpExecutableFinder();
     $this->php = escapeshellcmd($finder->find());
     $this->launcher = new ProcessLauncher();
     // Speed up the tests
     $this->launcher->setCheckInterval(0.01);
 }