Ejemplo n.º 1
0
 /**
  * test grabbing a Trail by TrailUuId that does not exist
  *
  * @expectedException PDOException
  **/
 public function testGetInvalidTrailByTrailUuId()
 {
     //grab a TrailUuId that does not exist
     $trail = Trail::getTrailByTrailUuId($this->getPDO(), "<script></script>");
     $this->assertNull($trail);
 }