How would you succinctly assert the equality of collections elements, specifically a Set in JUnit 4?
|
|
|||||||||
|
|
You can just assert that the two Sets are equal to one another, which invokes the Set equals() method.
This test will pass if the two Sets are the same size and contain the same elements. |
|||||||||||||
|
|
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 |
|||||
|
|
A particularly interesting case is when you compare
and
So far, the only solution I see is to change both of them into sets
Or I could compare them element by element. |
|||
|
|
|
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
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...
|
|||
|
|
|
Check this article. One example from there:
|
|||
|
|
|
with hamcrest:
with plain assert:
NB:t the equals() method of the concrete set class is used |
|||
|
|
|
This can be done by rolling out your own version of Assert.
Sample method call:
I have written a helper class which does that. You can visit this link to view the blog and download the source code. |
|||
|
|
|
If you want to check whether a List or Set contains a set of specific values (instead of comparing it with an already existing collection), often the toString method of collections is handy:
This is a bit shorter than first constructing the expected collection and comparing it with the actual collection. |
|||
|
|