Definition at line 6 of file MathTrigTest.php.
◆ providerATAN2()
MathTrigTest::providerATAN2 |
( |
| ) |
|
◆ providerCEILING()
MathTrigTest::providerCEILING |
( |
| ) |
|
◆ providerCOMBIN()
MathTrigTest::providerCOMBIN |
( |
| ) |
|
◆ providerEVEN()
MathTrigTest::providerEVEN |
( |
| ) |
|
◆ providerFACT()
MathTrigTest::providerFACT |
( |
| ) |
|
◆ providerFACTDOUBLE()
MathTrigTest::providerFACTDOUBLE |
( |
| ) |
|
◆ providerFLOOR()
MathTrigTest::providerFLOOR |
( |
| ) |
|
◆ providerGCD()
MathTrigTest::providerGCD |
( |
| ) |
|
◆ providerINT()
MathTrigTest::providerINT |
( |
| ) |
|
◆ providerLCM()
MathTrigTest::providerLCM |
( |
| ) |
|
◆ providerLOG()
MathTrigTest::providerLOG |
( |
| ) |
|
◆ providerMDETERM()
MathTrigTest::providerMDETERM |
( |
| ) |
|
◆ providerMINVERSE()
MathTrigTest::providerMINVERSE |
( |
| ) |
|
◆ providerMMULT()
MathTrigTest::providerMMULT |
( |
| ) |
|
◆ providerMOD()
MathTrigTest::providerMOD |
( |
| ) |
|
◆ providerMROUND()
MathTrigTest::providerMROUND |
( |
| ) |
|
◆ providerMULTINOMIAL()
MathTrigTest::providerMULTINOMIAL |
( |
| ) |
|
◆ providerODD()
MathTrigTest::providerODD |
( |
| ) |
|
◆ providerPOWER()
MathTrigTest::providerPOWER |
( |
| ) |
|
◆ providerPRODUCT()
MathTrigTest::providerPRODUCT |
( |
| ) |
|
◆ providerQUOTIENT()
MathTrigTest::providerQUOTIENT |
( |
| ) |
|
◆ providerROMAN()
MathTrigTest::providerROMAN |
( |
| ) |
|
◆ providerROUNDDOWN()
MathTrigTest::providerROUNDDOWN |
( |
| ) |
|
◆ providerROUNDUP()
MathTrigTest::providerROUNDUP |
( |
| ) |
|
◆ providerSERIESSUM()
MathTrigTest::providerSERIESSUM |
( |
| ) |
|
◆ providerSIGN()
MathTrigTest::providerSIGN |
( |
| ) |
|
◆ providerSQRTPI()
MathTrigTest::providerSQRTPI |
( |
| ) |
|
◆ providerSUMIF()
MathTrigTest::providerSUMIF |
( |
| ) |
|
Definition at line 497 of file MathTrigTest.php.
References array.
523 array(
'"text with quotes"'),
526 '="text with quotes"',
535 array(
'"text with quotes"'),
Create styles array
The data for the language used.
◆ providerSUMSQ()
MathTrigTest::providerSUMSQ |
( |
| ) |
|
◆ providerTRUNC()
MathTrigTest::providerTRUNC |
( |
| ) |
|
◆ setUp()
◆ testATAN2()
MathTrigTest::testATAN2 |
( |
| ) |
|
providerATAN2
Definition at line 23 of file MathTrigTest.php.
References $result, and array.
25 $args = func_get_args();
26 $expectedResult = array_pop($args);
27 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'ATAN2'),$args);
28 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testCEILING()
MathTrigTest::testCEILING |
( |
| ) |
|
providerCEILING
Definition at line 39 of file MathTrigTest.php.
References $result, and array.
41 $args = func_get_args();
42 $expectedResult = array_pop($args);
43 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'CEILING'),$args);
44 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testCOMBIN()
MathTrigTest::testCOMBIN |
( |
| ) |
|
providerCOMBIN
Definition at line 55 of file MathTrigTest.php.
References $result, and array.
57 $args = func_get_args();
58 $expectedResult = array_pop($args);
59 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'COMBIN'),$args);
60 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testEVEN()
MathTrigTest::testEVEN |
( |
| ) |
|
providerEVEN
Definition at line 71 of file MathTrigTest.php.
References $result, and array.
73 $args = func_get_args();
74 $expectedResult = array_pop($args);
75 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'EVEN'),$args);
76 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testFACT()
MathTrigTest::testFACT |
( |
| ) |
|
providerFACT
Definition at line 103 of file MathTrigTest.php.
References $result, and array.
105 $args = func_get_args();
106 $expectedResult = array_pop($args);
107 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'FACT'),$args);
108 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testFACTDOUBLE()
MathTrigTest::testFACTDOUBLE |
( |
| ) |
|
providerFACTDOUBLE
Definition at line 119 of file MathTrigTest.php.
References $result, and array.
121 $args = func_get_args();
122 $expectedResult = array_pop($args);
123 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'FACTDOUBLE'),$args);
124 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testFLOOR()
MathTrigTest::testFLOOR |
( |
| ) |
|
providerFLOOR
Definition at line 135 of file MathTrigTest.php.
References $result, and array.
137 $args = func_get_args();
138 $expectedResult = array_pop($args);
139 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'FLOOR'),$args);
140 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testGCD()
MathTrigTest::testGCD |
( |
| ) |
|
providerGCD
Definition at line 151 of file MathTrigTest.php.
References $result, and array.
153 $args = func_get_args();
154 $expectedResult = array_pop($args);
155 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'GCD'),$args);
156 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testINT()
MathTrigTest::testINT |
( |
| ) |
|
providerINT
Definition at line 183 of file MathTrigTest.php.
References $result, and array.
185 $args = func_get_args();
186 $expectedResult = array_pop($args);
187 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'INT'),$args);
188 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testLCM()
MathTrigTest::testLCM |
( |
| ) |
|
providerLCM
Definition at line 167 of file MathTrigTest.php.
References $result, and array.
169 $args = func_get_args();
170 $expectedResult = array_pop($args);
171 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'LCM'),$args);
172 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testLOG()
MathTrigTest::testLOG |
( |
| ) |
|
providerLOG
Definition at line 231 of file MathTrigTest.php.
References $result, and array.
233 $args = func_get_args();
234 $expectedResult = array_pop($args);
235 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'LOG_BASE'),$args);
236 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testMDETERM()
MathTrigTest::testMDETERM |
( |
| ) |
|
providerMDETERM
Definition at line 263 of file MathTrigTest.php.
References $result, and array.
265 $args = func_get_args();
266 $expectedResult = array_pop($args);
267 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'MDETERM'),$args);
268 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testMINVERSE()
MathTrigTest::testMINVERSE |
( |
| ) |
|
providerMINVERSE
Definition at line 279 of file MathTrigTest.php.
References $result, and array.
281 $args = func_get_args();
282 $expectedResult = array_pop($args);
283 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'MINVERSE'),$args);
284 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testMMULT()
MathTrigTest::testMMULT |
( |
| ) |
|
providerMMULT
Definition at line 295 of file MathTrigTest.php.
References $result, and array.
297 $args = func_get_args();
298 $expectedResult = array_pop($args);
299 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'MMULT'),$args);
300 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testMOD()
MathTrigTest::testMOD |
( |
| ) |
|
providerMOD
Definition at line 247 of file MathTrigTest.php.
References $result, and array.
249 $args = func_get_args();
250 $expectedResult = array_pop($args);
251 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'MOD'),$args);
252 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testMROUND()
MathTrigTest::testMROUND |
( |
| ) |
|
◆ testMULTINOMIAL()
MathTrigTest::testMULTINOMIAL |
( |
| ) |
|
providerMULTINOMIAL
Definition at line 311 of file MathTrigTest.php.
References $result, and array.
313 $args = func_get_args();
314 $expectedResult = array_pop($args);
315 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'MULTINOMIAL'),$args);
316 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testODD()
MathTrigTest::testODD |
( |
| ) |
|
providerODD
Definition at line 87 of file MathTrigTest.php.
References $result, and array.
89 $args = func_get_args();
90 $expectedResult = array_pop($args);
91 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'ODD'),$args);
92 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testPOWER()
MathTrigTest::testPOWER |
( |
| ) |
|
providerPOWER
Definition at line 215 of file MathTrigTest.php.
References $result, and array.
217 $args = func_get_args();
218 $expectedResult = array_pop($args);
219 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'POWER'),$args);
220 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testPRODUCT()
MathTrigTest::testPRODUCT |
( |
| ) |
|
providerPRODUCT
Definition at line 345 of file MathTrigTest.php.
References $result, and array.
347 $args = func_get_args();
348 $expectedResult = array_pop($args);
349 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'PRODUCT'),$args);
350 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testQUOTIENT()
MathTrigTest::testQUOTIENT |
( |
| ) |
|
providerQUOTIENT
Definition at line 361 of file MathTrigTest.php.
References $result, and array.
363 $args = func_get_args();
364 $expectedResult = array_pop($args);
365 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'QUOTIENT'),$args);
366 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testROMAN()
MathTrigTest::testROMAN |
( |
| ) |
|
providerROMAN
Definition at line 457 of file MathTrigTest.php.
References $result, and array.
459 $args = func_get_args();
460 $expectedResult = array_pop($args);
461 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'ROMAN'),$args);
462 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testROUNDDOWN()
MathTrigTest::testROUNDDOWN |
( |
| ) |
|
providerROUNDDOWN
Definition at line 393 of file MathTrigTest.php.
References $result, and array.
395 $args = func_get_args();
396 $expectedResult = array_pop($args);
397 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'ROUNDDOWN'),$args);
398 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testROUNDUP()
MathTrigTest::testROUNDUP |
( |
| ) |
|
providerROUNDUP
Definition at line 377 of file MathTrigTest.php.
References $result, and array.
379 $args = func_get_args();
380 $expectedResult = array_pop($args);
381 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'ROUNDUP'),$args);
382 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testSERIESSUM()
MathTrigTest::testSERIESSUM |
( |
| ) |
|
providerSERIESSUM
Definition at line 409 of file MathTrigTest.php.
References $result, and array.
411 $args = func_get_args();
412 $expectedResult = array_pop($args);
413 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'SERIESSUM'),$args);
414 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testSIGN()
MathTrigTest::testSIGN |
( |
| ) |
|
providerSIGN
Definition at line 199 of file MathTrigTest.php.
References $result, and array.
201 $args = func_get_args();
202 $expectedResult = array_pop($args);
203 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'SIGN'),$args);
204 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testSQRTPI()
MathTrigTest::testSQRTPI |
( |
| ) |
|
providerSQRTPI
Definition at line 473 of file MathTrigTest.php.
References $result, and array.
475 $args = func_get_args();
476 $expectedResult = array_pop($args);
477 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'SQRTPI'),$args);
478 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testSUMIF()
MathTrigTest::testSUMIF |
( |
| ) |
|
providerSUMIF
Definition at line 489 of file MathTrigTest.php.
References $result, and array.
491 $args = func_get_args();
492 $expectedResult = array_pop($args);
493 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'SUMIF'), $args);
494 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testSUMSQ()
MathTrigTest::testSUMSQ |
( |
| ) |
|
providerSUMSQ
Definition at line 425 of file MathTrigTest.php.
References $result, and array.
427 $args = func_get_args();
428 $expectedResult = array_pop($args);
429 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'SUMSQ'),$args);
430 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
◆ testTRUNC()
MathTrigTest::testTRUNC |
( |
| ) |
|
providerTRUNC
Definition at line 441 of file MathTrigTest.php.
References $result, and array.
443 $args = func_get_args();
444 $expectedResult = array_pop($args);
445 $result = call_user_func_array(
array(
'PHPExcel_Calculation_MathTrig',
'TRUNC'),$args);
446 $this->assertEquals($expectedResult,
$result, NULL, 1E-12);
Create styles array
The data for the language used.
The documentation for this class was generated from the following file:
- libs/composer/vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/MathTrigTest.php