| 1 | <?php |
||
| 13 | class GetCommandTest extends AbstractCommandTest |
||
| 14 | { |
||
| 15 | protected function getTestCommand() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Ensure that the class and property arguments are required |
||
| 22 | * |
||
| 23 | * @covers ::configure |
||
| 24 | */ |
||
| 25 | public function testConfigure() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Ensure a successful execution returns the value of the config property |
||
| 33 | * |
||
| 34 | * @covers ::execute |
||
| 35 | */ |
||
| 36 | public function testExecute() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Ensure that null is returned for a non-existent value |
||
| 44 | * |
||
| 45 | * @covers ::execute |
||
| 46 | */ |
||
| 47 | public function testNonExistentValue() |
||
| 52 | } |
||
| 53 |