Example #1
0
 public function testCanSearchForAdjectivesFromUrl()
 {
     // setup
     $url = 'http://www.stuartherbert.com';
     // do the test
     $client = new Client($this->_apiKey);
     $results = $client->callExtractAdjectivesFromUrl($url);
     // evaluate the results
     $this->assertTrue(count($results) > 0);
 }