コード例 #1
0
 /**
  * Load Swagger UI for Rest API
  *
  * @param string $serviceName
  * @param array $endpoints
  * @return void
  */
 public function test($serviceName, array $endpoints)
 {
     $this->serviceName = $serviceName;
     $this->endpoints = $endpoints;
     $this->swaggerPage->open();
     $this->swaggerPage->expandServiceContent($this->serviceName);
     foreach ($endpoints as $endpoint) {
         $this->swaggerPage->expandEndpointContent($serviceName, $endpoint);
     }
 }
コード例 #2
0
 /**
  * Load Swagger UI for Rest API
  *
  * @param string $serviceName
  * @param array $endpoints
  * @return void
  */
 public function test($serviceName, array $endpoints)
 {
     $this->markTestIncomplete("MAGETWO-49889: Failed in Bamboo>>PS-FT-Plan. Needs to be triaged and fixed as part of MLS-13.");
     $this->serviceName = $serviceName;
     $this->endpoints = $endpoints;
     $this->swaggerPage->open();
     $this->swaggerPage->expandServiceContent($this->serviceName);
     foreach ($endpoints as $endpoint) {
         $this->swaggerPage->expandEndpointContent($serviceName, $endpoint);
     }
 }