/** * Register the defined EntryPoints in SDK, located in src/EntryPoint/registry.php file * @throws EntryPointException */ protected function registerSDKEntryPoints() { $entryPoints = Helpers::getSDKEntryPointRegistry(); foreach ($entryPoints as $funcName => $className) { $this->registerEntryPoint($funcName, $className); } }
/** * @test * @covers ::getSDKEntryPointRegistry * @group default */ public function testGetSDKEntryPointRegistry() { $this->assertNotEmpty(Helpers::getSDKEntryPointRegistry()); }