mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
51 lines
826 B
PHP
51 lines
826 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Math;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Math;
|
|
|
|
class SinTest extends TestCase
|
|
{
|
|
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testSin(float $expected, float $number): void
|
|
{
|
|
self::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
|
|
]
|
|
];
|
|
}
|
|
}
|