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 CosTest extends TestCase
|
|
|
|
{
|
2019-12-26 21:03:29 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider provideData
|
|
|
|
*/
|
|
|
|
public function testCos(float $expected, float $number): void
|
|
|
|
{
|
|
|
|
self::assertSame($expected, Math\cos($number));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideData(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
0.5403023058681398,
|
|
|
|
1.0
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
1.0,
|
|
|
|
0.0
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
0.10291095660695612,
|
|
|
|
45.45,
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
0.28366218546322625,
|
|
|
|
-5
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
-0.9983206000589924,
|
|
|
|
-15.65
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
2019-12-24 01:52:07 +01:00
|
|
|
}
|