Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function setUp(): void |
||
22 | { |
||
23 | $this->domainService = $this->prophesize(DomainServiceInterface::class); |
||
24 | |||
25 | $command = new ListDomainsCommand($this->domainService->reveal(), 'foo.com'); |
||
26 | $app = new Application(); |
||
27 | $app->add($command); |
||
28 | |||
29 | $this->commandTester = new CommandTester($command); |
||
30 | } |
||
57 |