2012-01-23 23:38:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
require_once 'testDataFileIterator.php';
|
|
|
|
|
|
|
|
class MathTrigTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
if (!defined('PHPEXCEL_ROOT'))
|
|
|
|
{
|
|
|
|
define('PHPEXCEL_ROOT', APPLICATION_PATH . '/');
|
|
|
|
}
|
|
|
|
require_once(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerATAN2
|
|
|
|
*/
|
|
|
|
public function testATAN2()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','ATAN2'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerATAN2()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/ATAN2.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerCEILING
|
|
|
|
*/
|
|
|
|
public function testCEILING()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','CEILING'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerCEILING()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/CEILING.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerCOMBIN
|
|
|
|
*/
|
|
|
|
public function testCOMBIN()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','COMBIN'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerCOMBIN()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/COMBIN.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerEVEN
|
|
|
|
*/
|
|
|
|
public function testEVEN()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','EVEN'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerEVEN()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/EVEN.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerODD
|
|
|
|
*/
|
|
|
|
public function testODD()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','ODD'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerODD()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/ODD.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerFACT
|
|
|
|
*/
|
|
|
|
public function testFACT()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','FACT'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerFACT()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/FACT.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerFACTDOUBLE
|
|
|
|
*/
|
|
|
|
public function testFACTDOUBLE()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','FACTDOUBLE'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerFACTDOUBLE()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/FACTDOUBLE.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerFLOOR
|
|
|
|
*/
|
|
|
|
public function testFLOOR()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','FLOOR'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerFLOOR()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/FLOOR.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerGCD
|
|
|
|
*/
|
|
|
|
public function testGCD()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','GCD'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerGCD()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/GCD.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerLCM
|
|
|
|
*/
|
|
|
|
public function testLCM()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','LCM'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerLCM()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/LCM.data');
|
|
|
|
}
|
|
|
|
|
2012-01-25 22:05:38 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider providerINT
|
|
|
|
*/
|
|
|
|
public function testINT()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','INT'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerINT()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/INT.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerSIGN
|
|
|
|
*/
|
|
|
|
public function testSIGN()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','SIGN'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerSIGN()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/SIGN.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerPOWER
|
|
|
|
*/
|
|
|
|
public function testPOWER()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_MathTrig','POWER'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerPOWER()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/MathTrig/POWER.data');
|
|
|
|
}
|
|
|
|
|
2012-01-23 23:38:58 +00:00
|
|
|
}
|