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
|
|
|
|
2020-10-15 10:18:03 +02:00
|
|
|
final class SinTest extends TestCase
|
2019-12-24 01:52:07 +01:00
|
|
|
{
|
2019-12-26 21:03:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider provideData
|
|
|
|
*/
|
|
|
|
public function testSin(float $expected, float $number): void
|
|
|
|
{
|
2020-10-15 10:18:03 +02:00
|
|
|
static::assertSame($expected, Math\sin($number));
|
2019-12-26 21:03:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
2019-12-24 01:52:07 +01:00
|
|
|
}
|