1 | <?php |
||
13 | class ImportCommandTest extends CommandTestCase |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | protected function getCommandInstance() |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | protected function getCommand() |
||
30 | |||
31 | /** |
||
32 | * Test command success execution |
||
33 | */ |
||
34 | public function testSuccessExecute() |
||
43 | |||
44 | /** |
||
45 | * Common operations for import command tests |
||
46 | * |
||
47 | * @param $arguments - array of arguments for command |
||
48 | * @param $output - expected output |
||
49 | */ |
||
50 | private function execution($arguments, $output) |
||
56 | } |
||
57 |