@Test public void doesNotEqualDifferentTeam() throws Exception { Team otherTeam = new Team(2000, school); assertFalse(team.equals(otherTeam)); }
@Test public void equalsSameTeam() throws Exception { Team otherTeam = new Team(1900, school); assertTrue(team.equals(otherTeam)); }