| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class DeployerTest extends TestCase |
||
| 16 | { |
||
| 17 | private $deployer; |
||
| 18 | |||
| 19 | protected function setUp(): void |
||
| 20 | { |
||
| 21 | $console = new Application(); |
||
| 22 | $input = $this->createMock(InputInterface::class); |
||
| 23 | $output = $this->createMock(OutputInterface::class); |
||
| 24 | $this->deployer = new Deployer($console, $input, $output); |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function tearDown(): void |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testInstance() |
||
| 35 | } |
||
| 36 | } |
||
| 37 |