public void GetLeagueTeamsWithExceptionTest()
 {
     League league = new League(398);
     Assert.IsNotNull(league.GetTeamByName("Barca"));
 }
 public void GetTeamByNameTest()
 {
     League league = new League(LeagueNameId.ENGLAND);
     Assert.IsNotNull(league.GetTeamByName("Manchester United FC"));
 }
 public void GetLeagueTeamsTest()
 {
     League league = new League(LeagueNameId.ENGLAND);
     Assert.IsNotNull(league.GetLeagueTeams());
 }