コード例 #1
0
 /**
  * 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);
     }
 }
コード例 #2
0
 /**
  * @test
  * @covers ::getSDKEntryPointRegistry
  * @group default
  */
 public function testGetSDKEntryPointRegistry()
 {
     $this->assertNotEmpty(Helpers::getSDKEntryPointRegistry());
 }