PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/GeStepTest.php

32 lines
779 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit\Framework\TestCase;
class GeStepTest extends TestCase
{
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerGESTEP
*
* @param mixed $expectedResult
*/
public function testGESTEP($expectedResult, ...$args): void
{
$result = Engineering::GESTEP(...$args);
self::assertEquals($expectedResult, $result);
}
public function providerGESTEP()
{
return require 'tests/data/Calculation/Engineering/GESTEP.php';
}
}