| 1 | <?php |
||
| 25 | class LsTreeCommandTest extends TestCase |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var \GitElephant\Command\LsTreeCommand ; |
||
| 29 | */ |
||
| 30 | private $lsTreeCommand; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * setUp function |
||
| 34 | */ |
||
| 35 | public function setUp(): void |
||
| 39 | |||
| 40 | /** |
||
| 41 | * fullTree test |
||
| 42 | * |
||
| 43 | * @covers \GitElephant\Command\LsTreeCommand::tree |
||
| 44 | */ |
||
| 45 | public function testFullTree(): void |
||
| 49 | |||
| 50 | /** |
||
| 51 | * tree test |
||
| 52 | * |
||
| 53 | * @covers \GitElephant\Command\LsTreeCommand::tree |
||
| 54 | */ |
||
| 55 | public function testTree(): void |
||
| 59 | |||
| 60 | /** |
||
| 61 | * listAll test |
||
| 62 | * |
||
| 63 | * @covers \GitElephant\Command\LsTreeCommand::listAll |
||
| 64 | */ |
||
| 65 | public function testListAll(): void |
||
| 69 | } |
||
| 70 |