Definition at line 6 of file ColorTest.php.
◆ providerColorChangeBrightness()
ColorTest::providerColorChangeBrightness |
( |
| ) |
|
◆ providerColorGetBlue()
ColorTest::providerColorGetBlue |
( |
| ) |
|
◆ providerColorGetGreen()
ColorTest::providerColorGetGreen |
( |
| ) |
|
◆ providerColorGetRed()
ColorTest::providerColorGetRed |
( |
| ) |
|
◆ setUp()
Definition at line 9 of file ColorTest.php.
References defined.
11 if (!
defined(
'PHPEXCEL_ROOT')) {
12 define(
'PHPEXCEL_ROOT', APPLICATION_PATH .
'/');
14 require_once(PHPEXCEL_ROOT .
'PHPExcel/Autoloader.php');
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
◆ testChangeBrightness()
ColorTest::testChangeBrightness |
( |
| ) |
|
providerColorChangeBrightness
Definition at line 68 of file ColorTest.php.
References $result, and array.
70 $args = func_get_args();
71 $expectedResult = array_pop($args);
72 $result = call_user_func_array(
array(
'PHPExcel_Style_Color',
'changeBrightness'),$args);
73 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testGetBlue()
ColorTest::testGetBlue |
( |
| ) |
|
providerColorGetBlue
Definition at line 52 of file ColorTest.php.
References $result, and array.
54 $args = func_get_args();
55 $expectedResult = array_pop($args);
56 $result = call_user_func_array(
array(
'PHPExcel_Style_Color',
'getBlue'),$args);
57 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testGetGreen()
ColorTest::testGetGreen |
( |
| ) |
|
providerColorGetGreen
Definition at line 36 of file ColorTest.php.
References $result, and array.
38 $args = func_get_args();
39 $expectedResult = array_pop($args);
40 $result = call_user_func_array(
array(
'PHPExcel_Style_Color',
'getGreen'),$args);
41 $this->assertEquals($expectedResult,
$result);
Create styles array
The data for the language used.
◆ testGetRed()
ColorTest::testGetRed |
( |
| ) |
|
providerColorGetRed
Definition at line 20 of file ColorTest.php.
References $result, and array.
22 $args = func_get_args();
23 $expectedResult = array_pop($args);
24 $result = call_user_func_array(
array(
'PHPExcel_Style_Color',
'getRed'),$args);
25 $this->assertEquals($expectedResult,
$result);
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/Style/ColorTest.php