2013-05-21 17:00:57 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Style;
|
2013-05-21 17:00:57 +00:00
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
|
2016-08-14 04:55:34 +00:00
|
|
|
|
2016-03-22 14:35:50 +00:00
|
|
|
class NumberFormatTest extends \PHPUnit_Framework_TestCase
|
2013-05-21 17:00:57 +00:00
|
|
|
{
|
|
|
|
public function setUp()
|
|
|
|
{
|
2016-08-14 04:08:43 +00:00
|
|
|
StringHelper::setDecimalSeparator('.');
|
|
|
|
StringHelper::setThousandsSeparator(',');
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2013-05-21 17:00:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerNumberFormat
|
|
|
|
*/
|
2015-05-17 13:00:02 +00:00
|
|
|
public function testFormatValueWithMask()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
2016-08-16 15:33:57 +00:00
|
|
|
$result = call_user_func_array([NumberFormat::class, 'toFormattedString'], $args);
|
2015-05-17 13:00:02 +00:00
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
2013-05-21 17:00:57 +00:00
|
|
|
|
|
|
|
public function providerNumberFormat()
|
|
|
|
{
|
2016-08-16 12:00:19 +00:00
|
|
|
return require 'data/Style/NumberFormat.php';
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2013-05-21 17:00:57 +00:00
|
|
|
}
|