How would you succinctly assert the equality of Collection elements, specifically a Set in JUnit 4?
Collection
Set
with hamcrest:
assertThat(s1, is(s2));
with plain assert:
assertEquals(s1, s2);
NB:t the equals() method of the concrete set class is used