(AssertionInfo info, Map<?, ?> actual)
| 543 | } |
| 544 | |
| 545 | private void assertNotNull(AssertionInfo info, Map<?, ?> actual) { |
| 546 | Objects.instance().assertNotNull(info, actual); |
| 547 | } |
| 548 | |
| 549 | private static <K, V> void failIfEmptySinceActualIsNotEmpty(MapEntry<? extends K, ? extends V>[] values) { |
| 550 | if (values.length == 0) throw new AssertionError("actual is not empty"); |
no test coverage detected