alexruiz / fest-assert-2.x

FEST Fluent Assertions 2.x
http://fest.easytesting.org
Apache License 2.0
402 stars 69 forks source link

MapAssert misses hasSameSizeAs(Map<K, V> other) #165

Open dobias opened 10 years ago

dobias commented 10 years ago

The MapAssert API misses the following method imho: public MapAssert<K, V> hasSameSizeAs(Map<K, V> other)

With the current API I can only pass in an Object[] or an Iterable, but since I use the MapAssert because I'm dealing with java.util.Map I want to be able to pass in my actual results map in the hasSameSizeAs method.