endtoend-test-psl/tests/Psl/Math/SinTest.php
2020-10-15 11:05:30 +02:00

51 lines
834 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Math;
use PHPUnit\Framework\TestCase;
use Psl\Math;
final class SinTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testSin(float $expected, float $number): void
{
static::assertSame($expected, Math\sin($number));
}
public function provideData(): array
{
return [
[
-0.9589242746631385,
5.0
],
[
-0.9961646088358407,
4.8
],
[
0.0,
0.0
],
[
0.3894183423086505,
0.4
],
[
-0.21511998808781552,
-6.5
]
];
}
}