installer = new class() extends InstallerAbstract { }; } /** * @covers phpOMS\Module\InstallerAbstract * @group framework */ public function testInvalidModuleInstall() : void { $this->expectException(\UnexpectedValueException::class); $this->installer::install( new DatabasePool(), new ModuleInfo(__DIR__), new CoreSettings() ); } }