Пример #1
0
 public function testExportRepliesToRetweetsOfServiceUser()
 {
     $post_dao = new PostMySQLDAO();
     $posts_to_process = $post_dao->getAllPosts(13, 'twitter', 500, 1);
     $replies_rts_exported = $this->dao->exportRepliesRetweetsOfPosts($posts_to_process);
     //2 replies and 1 retweet
     $this->assertEqual($replies_rts_exported, 3);
 }