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

50 lines
1.2 KiB
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheetTests\Custom\ComplexAssert;
use PHPUnit\Framework\TestCase;
class ImCscTest extends TestCase
{
const COMPLEX_PRECISION = 1E-8;
/**
* @var ComplexAssert
*/
protected $complexAssert;
2020-04-27 10:28:36 +00:00
protected function setUp(): void
{
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
$this->complexAssert = new ComplexAssert();
}
2020-04-27 10:28:36 +00:00
protected function tearDown(): void
{
$this->complexAssert = null;
}
/**
* @dataProvider providerIMCSC
*
* @param mixed $expectedResult
* @param mixed $value
*/
2020-05-18 04:49:57 +00:00
public function testIMCSC($expectedResult, $value): void
{
$result = Engineering::IMCSC($value);
2020-05-18 04:49:57 +00:00
self::assertTrue(
$this->complexAssert->assertComplexEquals($expectedResult, $result, self::COMPLEX_PRECISION),
$this->complexAssert->getErrorMessage()
);
}
public function providerIMCSC()
{
return require 'tests/data/Calculation/Engineering/IMCSC.php';
}
}