public function StopwatchTest::testStopWithoutStart

@expectedException \LogicException

File

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

Class

StopwatchTest
StopwatchTest

Namespace

Symfony\Component\HttpKernel\Tests\Debug

Code

public function testStopWithoutStart() {
  $stopwatch = new Stopwatch();
  $stopwatch
    ->stop('foo');
}