vote up 2 vote down star

Is there a jUnit parallel to NUnit's CollectionAssert?

flag

64% accept rate

2 Answers

vote up 7 vote down check

Using JUnit 4.4 you can use assertThat() together with the Hamcrest code (don't worry, it's shipped with JUnit, no need for an extra .jar) to produce complex self-describing asserts including ones that operate on collections:

import static org.junit.Assert.assertThat;
import static org.junit.matchers.JUnitMatchers.*;
import static org.hamcrest.CoreMatchers.*;

List<String> l = Arrays.asList("foo", "bar");
assertThat(l, hasItems("foo", "bar"));
assertThat(l, not(hasItem((String) null)));
assertThat(l, not(hasItems("bar", "quux")));
// check if two objects are equal with assertThat()

// the following three lines of code check the same thing.
// the first one is the "traditional" approach,
// the second one is the succinct version and the third one the verbose one 
assertEquals(l, Arrays.asList("foo", "bar")));
assertThat(l, is(Arrays.asList("foo", "bar")));
assertThat(l, is(equalTo(Arrays.asList("foo", "bar"))));

Using this approach you will automagically get a good description of the assert when it fails.

link|flag
Ooh, I hadn't realised hamcrest had made it into the junit distro. Go Nat! – skaffman Jul 6 at 12:49
If I want to assert l is composed of items ("foo", "bar"), but no other items exists - is there some easy syntax for that? – ripper234 Jul 6 at 12:57
Use the above code snippet and throw in an additional assertTrue(l.size() == 2) – aberrant80 Jul 6 at 13:12
Meh, ugly. In NUnit that's CollectionAssert.AreEqual( Collection expected, Collection actual ); – ripper234 Jul 6 at 14:08
Isn't that just assertTrue(collection1.equals(collection2)); ? – Esko Jul 6 at 14:58
show 2 more comments
vote up 2 vote down

Not directly, no. I suggest the use of Hamcrest, which provides a rich set of matching rules which integrates nicely with jUnit (and other testing frameworks)

link|flag
This does not compile for some reason (see stackoverflow.com/questions/1092981/…): ArrayList<Integer> actual = new ArrayList<Integer>(); ArrayList<Integer> expected = new ArrayList<Integer>(); actual.add(1); expected.add(2); assertThat(actual, hasItems(expected)); – ripper234 Jul 7 at 15:23

Your Answer

Get an OpenID
or

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