/**
  * Test pagination
  */
 public function testFavoritesPagination()
 {
     $res = $this->dao->getAllFavoritePosts(20, 'twitter', 10, 3);
     // fetch page 3
     $this->assertIsA($res, "array");
     $this->assertEqual(count($res), 10);
     $this->assertEqual($res[0]->post_text, 'This is post 19');
 }