(Map<K, V> actual, MapEntry<? extends K, ? extends V> entry)
| 538 | } |
| 539 | |
| 540 | private <K, V> boolean containsEntry(Map<K, V> actual, MapEntry<? extends K, ? extends V> entry) { |
| 541 | if (entry == null) throw new NullPointerException("Entries to look for should not be null"); |
| 542 | return actual.containsKey(entry.key) ? areEqual(actual.get(entry.key), entry.value) : false; |
| 543 | } |
| 544 | |
| 545 | private void assertNotNull(AssertionInfo info, Map<?, ?> actual) { |
| 546 | Objects.instance().assertNotNull(info, actual); |
no test coverage detected