public function testGetGenderOfCommenters()
 {
     $builders[] = FixtureBuilder::build('posts', array('post_id' => '111', 'author_user_id' => 'blahblahblah', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('posts', array('post_id' => 'abadadfd12123', 'author_user_id' => '203', 'in_reply_to_post_id' => '111', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('posts', array('post_id' => 'abadad', 'author_user_id' => '193', 'in_reply_to_post_id' => '111', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('posts', array('post_id' => 'd12123', 'author_user_id' => '133', 'in_reply_to_post_id' => '111', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('posts', array('post_id' => 'abawertyfd12123', 'author_user_id' => '203', 'in_reply_to_post_id' => '222', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('users', array('user_id' => '133', 'gender' => 'male', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('users', array('user_id' => '193', 'gender' => 'male', 'network' => 'facebook'));
     $builders[] = FixtureBuilder::build('users', array('user_id' => '203', 'gender' => 'female', 'network' => 'facebook'));
     $result = $this->dao->getGenderOfCommenters('111', 'facebook');
     $this->debug(Utils::varDumpToString($result));
     $this->assertEqual($result['female_comment_count'], '1');
     $this->assertEqual($result['male_comment_count'], '2');
 }