PhpSpreadsheet/unitTests/Classes/src/Style/NumberFormatTest.php

32 lines
792 B
PHP
Raw Normal View History

<?php
2016-03-22 14:35:50 +00:00
namespace PHPExcel\Style;
require_once 'testDataFileIterator.php';
2016-03-22 14:35:50 +00:00
class NumberFormatTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
2016-03-22 14:19:00 +00:00
\PHPExcel\Shared\String::setDecimalSeparator('.');
\PHPExcel\Shared\String::setThousandsSeparator(',');
2015-05-17 13:00:02 +00:00
}
/**
* @dataProvider providerNumberFormat
*/
2015-05-17 13:00:02 +00:00
public function testFormatValueWithMask()
{
$args = func_get_args();
$expectedResult = array_pop($args);
2016-03-22 21:40:11 +00:00
$result = call_user_func_array(array('\PHPExcel\Style\NumberFormat','toFormattedString'), $args);
2015-05-17 13:00:02 +00:00
$this->assertEquals($expectedResult, $result);
}
public function providerNumberFormat()
{
2016-03-22 14:35:50 +00:00
return new \testDataFileIterator('rawTestData/Style/NumberFormat.data');
2015-05-17 13:00:02 +00:00
}
}