Current File : /home/itiffy/public_html/vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Style/ColorTest.php
<?php


require_once 'testDataFileIterator.php';

class ColorTest extends PHPUnit_Framework_TestCase
{

    public function setUp()
    {
        if (!defined('PHPEXCEL_ROOT')) {
            define('PHPEXCEL_ROOT', APPLICATION_PATH . '/');
        }
        require_once(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
	}

    /**
     * @dataProvider providerColorGetRed
     */
	public function testGetRed()
	{
		$args = func_get_args();
		$expectedResult = array_pop($args);
		$result = call_user_func_array(array('PHPExcel_Style_Color','getRed'),$args);
		$this->assertEquals($expectedResult, $result);
	}

    public function providerColorGetRed()
    {
    	return new testDataFileIterator('rawTestData/Style/ColorGetRed.data');
	}

    /**
     * @dataProvider providerColorGetGreen
     */
	public function testGetGreen()
	{
		$args = func_get_args();
		$expectedResult = array_pop($args);
		$result = call_user_func_array(array('PHPExcel_Style_Color','getGreen'),$args);
		$this->assertEquals($expectedResult, $result);
	}

    public function providerColorGetGreen()
    {
    	return new testDataFileIterator('rawTestData/Style/ColorGetGreen.data');
	}

    /**
     * @dataProvider providerColorGetBlue
     */
	public function testGetBlue()
	{
		$args = func_get_args();
		$expectedResult = array_pop($args);
		$result = call_user_func_array(array('PHPExcel_Style_Color','getBlue'),$args);
		$this->assertEquals($expectedResult, $result);
	}

    public function providerColorGetBlue()
    {
    	return new testDataFileIterator('rawTestData/Style/ColorGetBlue.data');
	}

    /**
     * @dataProvider providerColorChangeBrightness
     */
	public function testChangeBrightness()
	{
		$args = func_get_args();
		$expectedResult = array_pop($args);
		$result = call_user_func_array(array('PHPExcel_Style_Color','changeBrightness'),$args);
		$this->assertEquals($expectedResult, $result);
	}

    public function providerColorChangeBrightness()
    {
    	return new testDataFileIterator('rawTestData/Style/ColorChangeBrightness.data');
	}

}