Exemple #1
0
 /**
  * test grabbing a sport by a league that does not exist
  **/
 public function testGetInvalidSportBySportLeague()
 {
     // grab a  id that exceeds the maximum allowable sport id
     $sportLeague = Sport::getSportBySportLeague($this->getPDO(), "This League doesn't exist");
     //var_dump($sportLeague);
     $this->assertNull($sportLeague);
 }