Esempio n. 1
0
 public function testStep()
 {
     $timer = new Timer();
     $step = $timer->getCurrentStep();
     $firstStep = $timer->step();
     $this->assertEquals($step, $firstStep);
     $this->assertNotEquals($firstStep, $timer->getCurrentStep());
 }