public function testDoesUserHavePostsWithRepliesSinceDate()
 {
     $post_dao = new PostMySQLDAO();
     $result = $post_dao->doesUserHavePostsWithRepliesSinceDate('user4', 'youtube', 7);
     $this->assertFalse($result);
     $counter = 0;
     $id = 200;
     $builders = array();
     while ($counter < 40) {
         $id += $counter;
         $builders[] = FixtureBuilder::build('posts', array('id' => $id, 'post_id' => 147 + $counter, 'author_user_id' => 23, 'author_username' => 'user4', 'pub_date' => '-' . $counter . 'd', 'retweet_count_cache' => 0, 'old_retweet_count_cache' => 0, 'favlike_count_cache' => 0, 'network' => 'youtube', 'reply_count_cache' => $counter, 'in_reply_to_user_id' => null, 'in_reply_to_post_id' => null, 'in_retweet_of_post_id' => null));
         $counter++;
     }
     // They do have replies from within 30 days
     $result = $post_dao->doesUserHavePostsWithRepliesSinceDate('user4', 'youtube', 30);
     $this->assertTrue($result);
     // Set date to some time 30+ days in the future and were guaranteed to have no replies since then
     $result = $post_dao->doesUserHavePostsWithRepliesSinceDate('user4', 'youtube', 30, date('Y-m-d', strtotime('+31 days')));
     $this->assertFalse($result);
 }