assertThat(group.hashCode(), is(not(anotherGroup.hashCode())));
}
@Test
public void itDoesNotEqualAnotherAccountGroupWithDifferentAccounts() {
final AccountGroup anotherGroup = new AccountGroup(group.getName(), group.getId(), new AccountList(checking, checking));
assertThat(group.equals(anotherGroup), is(false));
assertThat(group.hashCode(), is(not(anotherGroup.hashCode())));
}