kernel = new Kernel('test', false); } public function testLogDir(): void { $this->assertEquals(true, is_string($this->kernel->getLogDir())); } public function testConfigureContainer(): void { $this->expectException(\TypeError::class); $this->assertNull($this->invokeMethod($this->kernel, 'configureContainer', [null, null])); } public function testConfigureRoutes(): void { $this->expectException(\TypeError::class); $this->assertNull($this->invokeMethod($this->kernel, 'configureRoutes', [null, null])); } }