mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-26 21:48:32 +00:00
ec4098c8fd
While we might never be able to have 100% of our code strict, we can at the very least do it for all of our tests. This ensures that our tests are using our API with the types as intended by the test author, and not silently be cast to what our API requires.
32 lines
736 B
PHP
32 lines
736 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Information;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\Value;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class NTest extends TestCase
|
|
{
|
|
public function testNNoArgument(): void
|
|
{
|
|
$result = Value::asNumber();
|
|
self::assertSame(0, $result);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerN
|
|
*/
|
|
public function testN(mixed $expectedResult, mixed $value): void
|
|
{
|
|
$result = Value::asNumber($value);
|
|
self::assertEqualsWithDelta($expectedResult, $result, 1.0e-12);
|
|
}
|
|
|
|
public static function providerN(): array
|
|
{
|
|
return require 'tests/data/Calculation/Information/N.php';
|
|
}
|
|
}
|