public function testGetApiUri() { $api = new JiraApi('http://localhost:8080', '/rest/api/2'); $this->assertEquals('/rest/api/2/project/', $api->project()->getApiUrn()); }
/** * @When I get project by key :key * * @param string $key */ public function iGetProjectByKey($key) { $this->responseContent = $this->api->project()->getProject($key); }