public function PHP_TimerTest::testStartStop

@covers PHP_Timer::start @covers PHP_Timer::stop

File

drupal/core/vendor/phpunit/php-timer/Tests/TimerTest.php, line 66

Class

PHP_TimerTest
Tests for PHP_Timer.

Code

public function testStartStop() {
  PHP_Timer::start();
  $this
    ->assertInternalType('float', PHP_Timer::stop());
}