public function testStartIsNonBlocking() { $process = $this ->getProcess('php -r "sleep(4);"'); $start = microtime(true); $process ->start(); $end = microtime(true); $this ->assertLessThan(1, $end - $start); }