1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-09-16 13:50:17 +02:00

test using optional parameters

This commit is contained in:
Claudio Zizza 2015-01-05 14:28:37 +01:00
parent 61964952c0
commit 7789e0d713

View File

@ -33,9 +33,9 @@ class FactoryTest extends PHPUnit_Framework_TestCase
/** /**
* @dataProvider taskDataProvider * @dataProvider taskDataProvider
*/ */
public function testGetWith($taskData) public function testGetWithOptionalParams($taskData)
{ {
$task = Factory::get($taskData, $this->config); $task = Factory::get($taskData, $this->config, true, 'production');
$this->assertInstanceOf('\\Mage\\Task\\AbstractTask', $task); $this->assertInstanceOf('\\Mage\\Task\\AbstractTask', $task);
} }