Any Java unit testing framework that supports writing unit testing code like this:
Collection<AType> myCollection = objectUnderTest.doSomething();
assertCollectionContainsAtleast(myCollection, "a Expected value");
Meaning what I would like is some sort of iteration support with some sort of matcher attached.