endtoend-test-psl/tests/Psl/Math/ExpTest.php

40 lines
673 B
PHP
Raw Normal View History

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
final class ExpTest extends TestCase
2019-12-24 01:52:07 +01:00
{
2019-12-26 21:03:29 +01:00
/**
* @dataProvider provideData
*/
public function testExp(float $expected, float $number): void
{
static::assertSame($expected, Math\exp($number));
2019-12-26 21:03:29 +01:00
}
public function provideData(): array
{
return [
[
162754.79141900392,
12.0,
],
[
298.8674009670603,
5.7,
],
[
Math\INFINITY,
1000000,
]
];
}
2019-12-24 01:52:07 +01:00
}