예제 #1
0
 /**
  * test grabbing a Favorite by a profile id that does not exist
  **/
 public function testGetInvalidFavoriteByProfileId()
 {
     // grab a tweet id that exceeds the maximum allowable profile id
     $favorite = Favorite::getFavoriteByProfileId($this->getPDO(), DataDesignTest::INVALID_KEY);
     $this->assertNull($favorite);
 }