public class LeagueTestProgram { public static void main(String[] args) { League nhl; nhl = new League("NHL"); //Add a pile of teams to the league nhl.addTeam(new Team("Ottawa Senators")); nhl.addTeam(new Team("Montreal Canadians")); nhl.addTeam(new Team("Toronto Maple Leafs")); nhl.addTeam(new Team("Vancouver Cannucks")); nhl.addTeam(new Team("Edmonton Oilers")); nhl.addTeam(new Team("Washington Capitals")); nhl.addTeam(new Team("New Jersey Devils")); nhl.addTeam(new Team("Detroit Red Wings")); //Display the teams System.out.println("\nHere are the teams:"); nhl.showTeams(); } }