This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Stopwatch/Tests/StopwatchPeriodTest.php
2019-01-16 10:39:14 +01:00

68 lines
1.8 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Stopwatch\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Stopwatch\StopwatchPeriod;
class StopwatchPeriodTest extends TestCase
{
/**
* @dataProvider provideTimeValues
*/
public function testGetStartTime($start, $useMorePrecision, $expected)
{
$period = new StopwatchPeriod($start, $start, $useMorePrecision);
$this->assertSame($expected, $period->getStartTime());
}
/**
* @dataProvider provideTimeValues
*/
public function testGetEndTime($end, $useMorePrecision, $expected)
{
$period = new StopwatchPeriod($end, $end, $useMorePrecision);
$this->assertSame($expected, $period->getEndTime());
}
/**
* @dataProvider provideDurationValues
*/
public function testGetDuration($start, $end, $useMorePrecision, $duration)
{
$period = new StopwatchPeriod($start, $end, $useMorePrecision);
$this->assertSame($duration, $period->getDuration());
}
public function provideTimeValues()
{
yield [0, false, 0];
yield [0, true, 0.0];
yield [0.0, false, 0];
yield [0.0, true, 0.0];
yield [2.71, false, 2];
yield [2.71, true, 2.71];
}
public function provideDurationValues()
{
yield [0, 0, false, 0];
yield [0, 0, true, 0.0];
yield [0.0, 0.0, false, 0];
yield [0.0, 0.0, true, 0.0];
yield [2, 3.14, false, 1];
yield [2, 3.14, true, 1.14];
yield [2.71, 3.14, false, 1];
yield [2.71, 3.14, true, 0.43];
}
}