expectException(RuntimeException::class); $this->expectExceptionMessage('Config\Autoload is already started'); Autoload::charger(); Autoload::charger(); } public function testShutDown() { Autoload::shutDown(); Autoload::charger(); Autoload::shutDown(); $this->assertNull(Autoload::getInstance()); } }