1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 13:20:17 +02:00

new test added for unknown color names

This commit is contained in:
Claudio Zizza 2014-11-29 20:56:22 +01:00
parent 6e1a4d248d
commit d53b8fd8b8

View File

@ -47,4 +47,22 @@ class ColorsTest extends PHPUnit_Framework_TestCase
$this->assertSame($expected, $result);
}
/**
* @group 159
*/
public function testColorUnknownColorName()
{
$config = $this->getMock('Mage\Config');
$config->expects($this->once())
->method('getParameter')
->will($this->returnValue(false));
$string = '<foo>FooBar</foo>';
// Method need to be non static in the future
$result = Colors::color($string, $config);
$this->assertSame($string, $result);
}
}