12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace MathPHP\Tests;
- use MathPHP\Trigonometry;
- class TrigonometryTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @test unitCircle returns points on a unit circle.
- * @dataProvider dataProviderForUnitCircle
- * @param int $points
- * @param array $expected
- */
- public function testUnitCircle(int $points, array $expected)
- {
- // When
- $unitCircle = Trigonometry::unitCircle($points);
- // Then
- $this->assertEqualsWithDelta($expected, $unitCircle, 0.00000001);
- }
- /**
- * @return array
- */
- public function dataProviderForUnitCircle(): array
- {
- return [
- [5, [[1, 0], [0, 1], [-1, 0], [0, -1], [1, 0]]],
- [9, [[1, 0], [\M_SQRT1_2, \M_SQRT1_2], [0, 1], [-\M_SQRT1_2, \M_SQRT1_2], [-1, 0], [-\M_SQRT1_2, -\M_SQRT1_2], [0, -1], [\M_SQRT1_2, -\M_SQRT1_2], [1, 0]]],
- ];
- }
- }
|