How would you succinctly assert the equality of collections elements, specifically a Set in JUnit 4?

link|improve this question

2  
Are you trying to assert that two Sets are equal to each other (contain the same elements), or that two elements of the same Set are equal? – Bill the Lizard Feb 22 '10 at 18:55
I need to see that the elements of two Sets are equal – Eqbal Feb 22 '10 at 18:58
feedback

7 Answers

up vote 7 down vote accepted

You can just assert that the two Sets are equal to one another, which invokes the Set equals() method.

public class SimpleTest {

    private Set<String> setA;
    private Set<String> setB;

    @Before
    public void setUp() {
        setA = new HashSet<String>();
        setA.add("Testing...");
        setB = new HashSet<String>();
        setB.add("Testing...");
    }

    @Test
    public void testEqualSets() {
        assertEquals( setA, setB );
    }
}

This test will pass if the two Sets are the same size and contain the same elements.

link|improve this answer
Works for Map too. – Carter Page Apr 11 at 13:48
feedback

A particularly interesting case is when you compare

   java.util.Arrays$ArrayList<[[name,value,type], [name1,value1,type1]]> 

and

   java.util.Collections$UnmodifiableCollection<[[name,value,type], [name1,value1,type1]]>

So far, the only solution I see is to change both of them into sets

assertEquals(new HashSet<CustomAttribute>(customAttributes), new HashSet<CustomAttribute>(result.getCustomAttributes()));

Or I could compare them element by element.

link|improve this answer
feedback

Apache commons to the rescue again.

assertTrue(CollectionUtils.isEqualCollection(coll1, coll2));

Works like a charm. I don't know why but I found that with collections the following assertEquals(coll1, coll2) doesn't always work. In the case where it failed for me I had two collections backed by Sets. Neither hamcrest nor junit would say the collections were equal even though I knew for sure that they were. Using CollectionUtils it works perfectly.

link|improve this answer
feedback

As an additional method that is array based ... you can consider using unordered array assertions in junitx . Although the Apache CollectionUtils example will work, there is a pacakge of solid assertion extensions there as well :

I think that the

ArrayAssert.assertEquivalenceArrays(new Integer[]{1,2,3}, new Integer[]{1,3,2});

approach will be much more readable and debuggable for you (all Collections support toArray(), so it should be easy enough to use the ArrayAssert methods.

Of course the downside here is that, junitx is an additional jar file or maven entry...

 <dependency org="junit-addons" name="junit-addons" rev="1.4"/>
link|improve this answer
feedback

with hamcrest:

assertThat(s1, is(s2));

with plain assert:

assertEquals(s1, s2);

NB:t the equals() method of the concrete set class is used

link|improve this answer
feedback

Check this article. One example from there:

@Test  
public void listEquality() {  
    List<Integer> expected = new ArrayList<Integer>();  
    expected.add(5);  

    List<Integer> actual = new ArrayList<Integer>();  
    actual.add(5);  

    assertEquals(expected, actual);  
}  
link|improve this answer
feedback

This can be done by rolling out your own version of Assert.

public static void assertEquals(Collection expected, Collection actual);
public static void assertEquals(Collection expected, Collection actual, boolean ordered);

Sample method call:

int[] input = new int[] { 3, 2, 7, 5};
int[] expected = new int[] { 2, 3, 5, 7};
int[] actual = MySortModule(input); // sample class that sorts an integer array
AssertHelper.assertEquals(expected, actual);

I have written a helper class which does that. You can visit this link to view the blog and download the source code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.