Definition at line 6 of file LogicalTest.php.
◆ providerAND()
LogicalTest::providerAND |
( |
| ) |
|
◆ providerIF()
LogicalTest::providerIF |
( |
| ) |
|
◆ providerIFERROR()
LogicalTest::providerIFERROR |
( |
| ) |
|
◆ providerNOT()
LogicalTest::providerNOT |
( |
| ) |
|
◆ providerOR()
LogicalTest::providerOR |
( |
| ) |
|
◆ setUp()
◆ testAND()
providerAND
Definition at line 35 of file LogicalTest.php.
References $result, and array.
37 $args = func_get_args();
38 $expectedResult = array_pop($args);
39 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Logical',
'LOGICAL_AND'),$args);
40 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testFALSE()
LogicalTest::testFALSE |
( |
| ) |
|
◆ testIF()
providerIF
Definition at line 83 of file LogicalTest.php.
References $result, and array.
85 $args = func_get_args();
86 $expectedResult = array_pop($args);
87 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Logical',
'STATEMENT_IF'),$args);
88 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testIFERROR()
LogicalTest::testIFERROR |
( |
| ) |
|
providerIFERROR
Definition at line 99 of file LogicalTest.php.
References $result, and array.
101 $args = func_get_args();
102 $expectedResult = array_pop($args);
103 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Logical',
'IFERROR'),$args);
104 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testNOT()
providerNOT
Definition at line 67 of file LogicalTest.php.
References $result, and array.
69 $args = func_get_args();
70 $expectedResult = array_pop($args);
71 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Logical',
'NOT'),$args);
72 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testOR()
providerOR
Definition at line 51 of file LogicalTest.php.
References $result, and array.
53 $args = func_get_args();
54 $expectedResult = array_pop($args);
55 $result = call_user_func_array(
array(
'PHPExcel_Calculation_Logical',
'LOGICAL_OR'),$args);
56 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testTRUE()
LogicalTest::testTRUE |
( |
| ) |
|
The documentation for this class was generated from the following file:
- libs/composer/vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/LogicalTest.php