public function testParseJSONRelationship()
 {
     $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/relationship.json');
     $results = $api->parseJSONRelationship($data);
     $this->debug(Utils::varDumpToString($results));
     $this->assertEqual($results["source_follows_target"], false);
     $this->assertEqual($results["target_follows_source"], false);
 }