Exemple #1
0
 /**
  * test grabbing a sport that does not exist
  **/
 public function testGetInvalidSportBySportId()
 {
     // grab a sport id that exceeds the maximum allowable sport id
     $sport = Sport::getSportBySportId($this->getPDO(), SprotsTest::INVALID_KEY);
     $this->assertNull($sport);
 }