Example #1
0
 public function testCanSearchForAdjectivesWithSentimentAboutTerm()
 {
     // setup
     $searchTerm = 'Microsoft';
     // do the test
     $client = new Client($this->_apiKey);
     $results = $client->callExtractAdjectivesFromNet($searchTerm, 'pos');
     // evaluate the results
     $this->assertTrue(count($results) > 0);
 }