Fix tests
parent
66a77ed210
commit
b7d1f87848
|
@ -31,6 +31,11 @@ class ApplicationTest extends TestCase
|
|||
->with($this->equalTo('--no-plugins'))
|
||||
->will($this->returnValue(true));
|
||||
|
||||
$inputMock->expects($this->at($index++))
|
||||
->method('hasParameterOption')
|
||||
->with($this->equalTo('--no-cache'))
|
||||
->will($this->returnValue(false));
|
||||
|
||||
$inputMock->expects($this->at($index++))
|
||||
->method('getParameterOption')
|
||||
->with($this->equalTo(array('--working-dir', '-d')))
|
||||
|
@ -84,6 +89,11 @@ class ApplicationTest extends TestCase
|
|||
->with($this->equalTo('--no-plugins'))
|
||||
->will($this->returnValue(true));
|
||||
|
||||
$inputMock->expects($this->at($index++))
|
||||
->method('hasParameterOption')
|
||||
->with($this->equalTo('--no-cache'))
|
||||
->will($this->returnValue(false));
|
||||
|
||||
$inputMock->expects($this->at($index++))
|
||||
->method('getParameterOption')
|
||||
->with($this->equalTo(array('--working-dir', '-d')))
|
||||
|
|
Loading…
Reference in New Issue