Exemple #1
0
 public function testBlockWithoutTimerIsNotBlocking()
 {
     declare (ticks=1);
     $clock = new Clock();
     $start = microtime(true);
     $clock->block();
     $duration = microtime(true) - $start;
     $this->assertGreaterThan(0, $duration);
     $this->assertLessThan(0.001, $duration);
 }