| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class ApplicationFactoryTest extends TestCase |
||
| 25 | { |
||
| 26 | public function testCreateApplication(): void |
||
| 27 | { |
||
| 28 | chdir(__DIR__.'/fixtures/base'); |
||
| 29 | $factory = new ApplicationFactory(); |
||
| 30 | $factory->boot(); |
||
| 31 | $this->assertTrue(class_exists('Dotfiles\Plugins\Foo\FooPlugin', true)); |
||
| 32 | $this->assertTrue($factory->hasPlugin('foo')); |
||
| 33 | } |
||
| 35 |