mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-26 13:20:17 +02:00
Add 'with' to config class method expectations
This commit is contained in:
parent
dae179acad
commit
86f25b2de6
@ -18,6 +18,7 @@ class ColorsTest extends PHPUnit_Framework_TestCase
|
||||
$config = $this->getMock('Mage\Config');
|
||||
$config->expects($this->once())
|
||||
->method('getParameter')
|
||||
->with('no-color')
|
||||
->will($this->returnValue(false));
|
||||
|
||||
$string = '<green>FooBar</green>';
|
||||
@ -37,6 +38,7 @@ class ColorsTest extends PHPUnit_Framework_TestCase
|
||||
$config = $this->getMock('Mage\Config');
|
||||
$config->expects($this->once())
|
||||
->method('getParameter')
|
||||
->with('no-color')
|
||||
->will($this->returnValue(true));
|
||||
|
||||
$string = '<black>FooBar</black>';
|
||||
@ -56,6 +58,7 @@ class ColorsTest extends PHPUnit_Framework_TestCase
|
||||
$config = $this->getMock('Mage\Config');
|
||||
$config->expects($this->once())
|
||||
->method('getParameter')
|
||||
->with('no-color')
|
||||
->will($this->returnValue(false));
|
||||
|
||||
$string = '<foo>FooBar</foo>';
|
||||
|
Loading…
Reference in New Issue
Block a user