| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | protected function setUp() : void |
||
| 42 | { |
||
| 43 | $this->changelogGenerator = $this->createMock(ChangelogGenerator::class); |
||
| 44 | |||
| 45 | $this->application = new Application('Changelog Generator', Versions::getVersion('jwage/changelog-generator')); |
||
| 46 | $this->application->setAutoExit(false); |
||
| 47 | $this->application->add(new GenerateChangelogCommand($this->changelogGenerator)); |
||
| 48 | } |
||
| 50 |