public function StopwatchEventTest::testLap

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Debug/StopwatchEventTest.php, line 56

Class

StopwatchEventTest
StopwatchEventTest

Namespace

Symfony\Component\HttpKernel\Tests\Debug

Code

public function testLap() {
  $event = new StopwatchEvent(microtime(true) * 1000);
  $event
    ->start();
  $event
    ->lap();
  $event
    ->stop();
  $this
    ->assertCount(2, $event
    ->getPeriods());
}