| 1 | <?php |
||
| 15 | class AbstractCommandTest extends \PHPUnit_Framework_TestCase |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @test |
||
| 19 | * |
||
| 20 | * @expectedException \InvalidArgumentException |
||
| 21 | */ |
||
| 22 | public function propertyDoesNotExist() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @test |
||
| 31 | */ |
||
| 32 | public function propertyExist() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @test |
||
| 41 | * |
||
| 42 | * @expectedException \InvalidArgumentException |
||
| 43 | */ |
||
| 44 | public function wrongMethodPrefix() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @test |
||
| 53 | */ |
||
| 54 | public function hgPath() |
||
| 61 | } |
||
| 62 |