public function testGetTopics() { $res = $this->unbabel->getTopics(); $this->assertEquals($res->getStatusCode(), 200); }
public function testItShouldGetTopics() { $this->httpDriver->expects($this->once())->method('get')->with($this->unbabel->buildRequestUrl('/topic/'), $this->unbabel->getHeaders(), array('query' => array())); $this->unbabel->getTopics(); }