MCPcopy Index your code
hub / github.com/assertj/assertj / failIfNullOrEmpty

Method failIfNullOrEmpty

src/main/java/org/assertj/core/internal/Maps.java:527–530  ·  view source on GitHub ↗
(MapEntry<? extends K, ? extends V>[] entries)

Source from the content-addressed store, hash-verified

525 }
526
527 private static <K, V> void failIfNullOrEmpty(MapEntry<? extends K, ? extends V>[] entries) {
528 failIfNull(entries);
529 failIfEmpty(entries);
530 }
531
532 private static <K> void failIfNull(K[] keys) {
533 if (keys == null) throw new NullPointerException("The array of keys to look for should not be null");

Callers 1

assertDoesNotContainMethod · 0.95

Calls 2

failIfNullMethod · 0.95
failIfEmptyMethod · 0.95

Tested by

no test coverage detected