public function testParseJSONError()
 {
     $api = new TwitterAPIAccessorOAuth($oauth_access_token = '111', $oauth_access_token_secret = '222', $oauth_consumer_key = 1234, $oauth_consumer_secret = 1234, $num_twitter_errors = 5, $log = true);
     //List of users with cursor
     $data = file_get_contents(THINKUP_ROOT_PATH . $this->test_data_path . 'json/errors.json');
     $results = $api->parseJSONError($data);
     $this->debug(Utils::varDumpToString($results));
     $this->assertEqual($results["error"], "Sorry, that page does not exist");
 }