endtoend-test-psl/tests/Psl/Math/TanTest.php

51 lines
825 B
PHP
Raw Normal View History

2019-12-24 01:52:07 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Math;
use PHPUnit\Framework\TestCase;
2019-12-26 21:03:29 +01:00
use Psl\Math;
2019-12-24 01:52:07 +01:00
class TanTest extends TestCase
{
2019-12-26 21:03:29 +01:00
/**
* @dataProvider provideData
*/
public function testTan(float $expected, float $number): void
{
self::assertSame($expected, Math\tan($number));
}
public function provideData(): array
{
return [
[
-3.380515006246586,
5.0
],
[
-11.384870654242922,
4.8
],
[
0.0,
0.0
],
[
0.4227932187381618,
0.4
],
[
-0.22027720034589682,
-6.5
]
];
}
2019-12-24 01:52:07 +01:00
}