2019-07-25 19:02:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Engineering;
|
|
|
|
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Engineering;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Functions;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class ConvertUoMTest extends TestCase
|
|
|
|
{
|
2020-04-27 10:28:36 +00:00
|
|
|
protected function setUp(): void
|
2019-07-25 19:02:41 +00:00
|
|
|
{
|
|
|
|
Functions::setCompatibilityMode(Functions::COMPATIBILITY_EXCEL);
|
|
|
|
}
|
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testGetConversionGroups(): void
|
2019-07-25 19:02:41 +00:00
|
|
|
{
|
|
|
|
$result = Engineering::getConversionGroups();
|
2020-05-18 04:49:57 +00:00
|
|
|
self::assertIsArray($result);
|
2019-07-25 19:02:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testGetConversionGroupUnits(): void
|
2019-07-25 19:02:41 +00:00
|
|
|
{
|
|
|
|
$result = Engineering::getConversionGroupUnits();
|
2020-05-18 04:49:57 +00:00
|
|
|
self::assertIsArray($result);
|
2019-07-25 19:02:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testGetConversionGroupUnitDetails(): void
|
2019-07-25 19:02:41 +00:00
|
|
|
{
|
|
|
|
$result = Engineering::getConversionGroupUnitDetails();
|
2020-05-18 04:49:57 +00:00
|
|
|
self::assertIsArray($result);
|
2019-07-25 19:02:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testGetConversionMultipliers(): void
|
2019-07-25 19:02:41 +00:00
|
|
|
{
|
|
|
|
$result = Engineering::getConversionMultipliers();
|
2020-05-18 04:49:57 +00:00
|
|
|
self::assertIsArray($result);
|
2019-07-25 19:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerCONVERTUOM
|
|
|
|
*
|
|
|
|
* @param mixed $expectedResult
|
|
|
|
*/
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testCONVERTUOM($expectedResult, ...$args): void
|
2019-07-25 19:02:41 +00:00
|
|
|
{
|
|
|
|
$result = Engineering::CONVERTUOM(...$args);
|
2020-05-18 04:49:57 +00:00
|
|
|
self::assertEquals($expectedResult, $result);
|
2019-07-25 19:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function providerCONVERTUOM()
|
|
|
|
{
|
2020-05-17 09:35:55 +00:00
|
|
|
return require 'tests/data/Calculation/Engineering/CONVERTUOM.php';
|
2019-07-25 19:02:41 +00:00
|
|
|
}
|
|
|
|
}
|