1 | <?php |
||
14 | class DumpCommandTest extends AbstractCommandTest |
||
15 | { |
||
16 | protected function getTestCommand() |
||
20 | |||
21 | /** |
||
22 | * Ensure that the InputOptions exist |
||
23 | * |
||
24 | * @covers ::configure |
||
25 | */ |
||
26 | public function testConfigure() |
||
30 | |||
31 | /** |
||
32 | * Test that the command can successfully be executed |
||
33 | * |
||
34 | * @covers ::execute |
||
35 | */ |
||
36 | public function testExecute() |
||
42 | |||
43 | /** |
||
44 | * Test that the results can be filtered |
||
45 | * |
||
46 | * @covers ::execute |
||
47 | * @covers ::filterOutput |
||
48 | */ |
||
49 | public function testExecuteWithFilteredResults() |
||
55 | |||
56 | /** |
||
57 | * Ensure that the filter is applied to any column of the data |
||
58 | * |
||
59 | * @covers ::filterOutput |
||
60 | */ |
||
61 | public function testFilterOnAnyColumn() |
||
69 | |||
70 | /** |
||
71 | * Ensure that a ConfigCollectionInterface is returned |
||
72 | * |
||
73 | * @covers \SilverLeague\Console\Command\Config\AbstractConfigCommand::getConfig |
||
74 | */ |
||
75 | public function testGetConfigCollectionInterface() |
||
80 | } |
||
81 |