32 lines
785 B
PHP
32 lines
785 B
PHP
|
<?php
|
||
|
|
||
|
namespace PhpSpreadsheetTests\Style;
|
||
|
|
||
|
use PhpSpreadsheet\Shared\StringHelper;
|
||
|
use PhpSpreadsheet\Style\NumberFormat;
|
||
|
|
||
|
class NumberFormatDateTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function setUp()
|
||
|
{
|
||
|
StringHelper::setDecimalSeparator('.');
|
||
|
StringHelper::setThousandsSeparator(',');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @dataProvider providerNumberFormat
|
||
|
*/
|
||
|
public function testFormatValueWithMask()
|
||
|
{
|
||
|
$args = func_get_args();
|
||
|
$expectedResult = array_pop($args);
|
||
|
$result = call_user_func_array([NumberFormat::class, 'toFormattedString'], $args);
|
||
|
$this->assertEquals($expectedResult, $result);
|
||
|
}
|
||
|
|
||
|
public function providerNumberFormat()
|
||
|
{
|
||
|
return require 'data/Style/NumberFormatDates.php';
|
||
|
}
|
||
|
}
|