| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MapAssert |
|
| 1.0;1 |
| 1 | package net.sf.cotta.test.assertion; | |
| 2 | ||
| 3 | import java.util.Map; | |
| 4 | ||
| 5 | public class MapAssert<K, V> extends BaseAssert<Map<K, V>, MapAssert<K, V>> { | |
| 6 | public MapAssert(Map<K, V> value) { | |
| 7 | 0 | super(value); |
| 8 | 0 | } |
| 9 | } |