public function StopwatchTest::testStart

File

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

Class

StopwatchTest
StopwatchTest

Namespace

Symfony\Component\HttpKernel\Tests\Debug

Code

public function testStart() {
  $stopwatch = new Stopwatch();
  $event = $stopwatch
    ->start('foo', 'cat');
  $this
    ->assertInstanceof('Symfony\\Component\\HttpKernel\\Debug\\StopwatchEvent', $event);
  $this
    ->assertEquals('cat', $event
    ->getCategory());
}