| 1 | <?php |
||
| 13 | class GetCommandTest extends AbstractCommandTest |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritDoc} |
||
| 17 | */ |
||
| 18 | protected function getTestCommand() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Ensure that the class and property arguments are required |
||
| 25 | * |
||
| 26 | * @covers ::configure |
||
| 27 | */ |
||
| 28 | public function testConfigure() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Ensure a successful execution returns the value of the config property |
||
| 36 | * |
||
| 37 | * @covers ::execute |
||
| 38 | */ |
||
| 39 | public function testExecute() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Ensure that null is returned for a non-existent value |
||
| 48 | * |
||
| 49 | * @covers ::execute |
||
| 50 | */ |
||
| 51 | public function testNonExistentValue() |
||
| 56 | } |
||
| 57 |