/**
  * Test fetch of all favorited posts for a given user with post # less than a given upper bound.
  */
 public function testGetAllFavsForUserUpperBound()
 {
     $res = $this->dao->getAllFavoritePostsUpperBound(20, 'twitter', 100, 10);
     $this->assertIsA($res, "array");
     $this->assertEqual(count($res), 10);
 }