Example #1
0
 public function testCanFindSentimentProbabilityForTerm()
 {
     // setup
     $searchTerm = 'Stuart Herbert';
     // do the test
     $client = new Client($this->_apiKey);
     $score = $client->callSentimentProbability($searchTerm);
     // evaluate the results
     $this->assertTrue(is_float($score));
 }