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