コード例 #1
0
 /**
  * test grabbing a ProductAlert by alertEnabled that does not exist
  *
  * PDOException
  **/
 public function testGetInvalidProductAlertByAlertEnabled()
 {
     // grab an alertEnabled that does not exist
     $pdoProductAlert = ProductAlert::getProductAlertByAlertEnabled($this->getPDO(), $this->INVALID_alertEnabled);
     $this->assertNull($pdoProductAlert);
 }