Definition at line 6 of file FunctionsTest.php.
◆ providerERROR_TYPE()
FunctionsTest::providerERROR_TYPE |
( |
| ) |
|
◆ providerIS_BLANK()
FunctionsTest::providerIS_BLANK |
( |
| ) |
|
◆ providerIS_ERR()
FunctionsTest::providerIS_ERR |
( |
| ) |
|
◆ providerIS_ERROR()
FunctionsTest::providerIS_ERROR |
( |
| ) |
|
◆ providerIS_EVEN()
FunctionsTest::providerIS_EVEN |
( |
| ) |
|
◆ providerIS_LOGICAL()
FunctionsTest::providerIS_LOGICAL |
( |
| ) |
|
◆ providerIS_NA()
FunctionsTest::providerIS_NA |
( |
| ) |
|
◆ providerIS_NONTEXT()
FunctionsTest::providerIS_NONTEXT |
( |
| ) |
|
◆ providerIS_NUMBER()
FunctionsTest::providerIS_NUMBER |
( |
| ) |
|
◆ providerIS_ODD()
FunctionsTest::providerIS_ODD |
( |
| ) |
|
◆ providerIS_TEXT()
FunctionsTest::providerIS_TEXT |
( |
| ) |
|
◆ providerN()
FunctionsTest::providerN |
( |
| ) |
|
◆ providerTYPE()
FunctionsTest::providerTYPE |
( |
| ) |
|
◆ setUp()
◆ testDIV0()
FunctionsTest::testDIV0 |
( |
| ) |
|
◆ testDUMMY()
FunctionsTest::testDUMMY |
( |
| ) |
|
◆ testERROR_TYPE()
FunctionsTest::testERROR_TYPE |
( |
| ) |
|
providerERROR_TYPE
Definition at line 119 of file FunctionsTest.php.
References $result, and array.
121 $args = func_get_args();
122 $expectedResult = array_pop($args);
123 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'ERROR_TYPE'),$args);
124 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_BLANK()
FunctionsTest::testIS_BLANK |
( |
| ) |
|
providerIS_BLANK
Definition at line 71 of file FunctionsTest.php.
References $result, and array.
73 $args = func_get_args();
74 $expectedResult = array_pop($args);
75 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_BLANK'),$args);
76 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_ERR()
FunctionsTest::testIS_ERR |
( |
| ) |
|
providerIS_ERR
Definition at line 87 of file FunctionsTest.php.
References $result, and array.
89 $args = func_get_args();
90 $expectedResult = array_pop($args);
91 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_ERR'),$args);
92 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_ERROR()
FunctionsTest::testIS_ERROR |
( |
| ) |
|
providerIS_ERROR
Definition at line 103 of file FunctionsTest.php.
References $result, and array.
105 $args = func_get_args();
106 $expectedResult = array_pop($args);
107 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_ERROR'),$args);
108 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_EVEN()
FunctionsTest::testIS_EVEN |
( |
| ) |
|
providerIS_EVEN
Definition at line 215 of file FunctionsTest.php.
References $result, and array.
217 $args = func_get_args();
218 $expectedResult = array_pop($args);
219 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_EVEN'),$args);
220 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_LOGICAL()
FunctionsTest::testIS_LOGICAL |
( |
| ) |
|
providerIS_LOGICAL
Definition at line 135 of file FunctionsTest.php.
References $result, and array.
137 $args = func_get_args();
138 $expectedResult = array_pop($args);
139 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_LOGICAL'),$args);
140 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_NA()
FunctionsTest::testIS_NA |
( |
| ) |
|
providerIS_NA
Definition at line 151 of file FunctionsTest.php.
References $result, and array.
153 $args = func_get_args();
154 $expectedResult = array_pop($args);
155 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_NA'),$args);
156 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_NONTEXT()
FunctionsTest::testIS_NONTEXT |
( |
| ) |
|
providerIS_NONTEXT
Definition at line 199 of file FunctionsTest.php.
References $result, and array.
201 $args = func_get_args();
202 $expectedResult = array_pop($args);
203 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_NONTEXT'),$args);
204 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_NUMBER()
FunctionsTest::testIS_NUMBER |
( |
| ) |
|
providerIS_NUMBER
Definition at line 167 of file FunctionsTest.php.
References $result, and array.
169 $args = func_get_args();
170 $expectedResult = array_pop($args);
171 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_NUMBER'),$args);
172 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_ODD()
FunctionsTest::testIS_ODD |
( |
| ) |
|
providerIS_ODD
Definition at line 231 of file FunctionsTest.php.
References $result, and array.
233 $args = func_get_args();
234 $expectedResult = array_pop($args);
235 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_ODD'),$args);
236 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testIS_TEXT()
FunctionsTest::testIS_TEXT |
( |
| ) |
|
providerIS_TEXT
Definition at line 183 of file FunctionsTest.php.
References $result, and array.
185 $args = func_get_args();
186 $expectedResult = array_pop($args);
187 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'IS_TEXT'),$args);
188 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testN()
providerN
Definition at line 263 of file FunctionsTest.php.
References $result, and array.
265 $args = func_get_args();
266 $expectedResult = array_pop($args);
267 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'N'),$args);
268 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testNA()
FunctionsTest::testNA |
( |
| ) |
|
◆ testNAME()
FunctionsTest::testNAME |
( |
| ) |
|
◆ testNaN()
FunctionsTest::testNaN |
( |
| ) |
|
◆ testNULL()
FunctionsTest::testNULL |
( |
| ) |
|
◆ testREF()
FunctionsTest::testREF |
( |
| ) |
|
◆ testTYPE()
FunctionsTest::testTYPE |
( |
| ) |
|
providerTYPE
Definition at line 247 of file FunctionsTest.php.
References $result, and array.
249 $args = func_get_args();
250 $expectedResult = array_pop($args);
251 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Functions',
'TYPE'),$args);
252 $this->assertEquals($expectedResult,
$result, NULL, 1E-8);
Create styles array
The data for the language used.
◆ testVALUE()
FunctionsTest::testVALUE |
( |
| ) |
|
The documentation for this class was generated from the following file:
- libs/composer/vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/FunctionsTest.php