object = $objectManager->create( \Magento\Framework\App\ObjectManager\ConfigLoader::class ); } public function testLoad() { CacheCleaner::cleanAll(); $data = $this->object->load('global'); $this->assertNotEmpty($data); $cachedData = $this->object->load('global'); $this->assertEquals($data, $cachedData); } }