2012-03-24 23:11:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
require_once 'testDataFileIterator.php';
|
|
|
|
|
|
|
|
class FinancialTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
if (!defined('PHPEXCEL_ROOT'))
|
|
|
|
{
|
|
|
|
define('PHPEXCEL_ROOT', APPLICATION_PATH . '/');
|
|
|
|
}
|
|
|
|
require_once(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerACCRINT
|
|
|
|
*/
|
|
|
|
public function testACCRINT()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_Financial','ACCRINT'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerACCRINT()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/Financial/ACCRINT.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerACCRINTM
|
|
|
|
*/
|
|
|
|
public function testACCRINTM()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_Financial','ACCRINTM'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerACCRINTM()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/Financial/ACCRINTM.data');
|
|
|
|
}
|
|
|
|
|
2012-03-25 22:26:31 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider providerAMORDEGRC
|
|
|
|
*/
|
|
|
|
public function testAMORDEGRC()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_Financial','AMORDEGRC'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerAMORDEGRC()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/Financial/AMORDEGRC.data');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerAMORLINC
|
|
|
|
*/
|
|
|
|
public function testAMORLINC()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
|
|
|
$result = call_user_func_array(array('PHPExcel_Calculation_Financial','AMORLINC'),$args);
|
|
|
|
$this->assertEquals($expectedResult, $result, NULL, 1E-12);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function providerAMORLINC()
|
|
|
|
{
|
|
|
|
return new testDataFileIterator('rawTestData/Calculation/Financial/AMORLINC.data');
|
|
|
|
}
|
|
|
|
|
2012-03-24 23:11:57 +00:00
|
|
|
}
|