Uses of Class
cloud.opencode.base.test.assertion.MapAssert
Packages that use MapAssert
-
Uses of MapAssert in cloud.opencode.base.test
Methods in cloud.opencode.base.test that return MapAssert -
Uses of MapAssert in cloud.opencode.base.test.assertion
Methods in cloud.opencode.base.test.assertion that return MapAssertModifier and TypeMethodDescriptionMapAssert.allKeysMatch(Predicate<K> predicate) Asserts that all keys match the given predicate.MapAssert.allValuesMatch(Predicate<V> predicate) Asserts that all values match the given predicate.static <K,V> MapAssert <K, V> MapAssert.assertThat(Map<K, V> actual) Creates assertion for a map.MapAssert.containsEntry(K key, V value) Asserts that the map contains the specified key-value entry.MapAssert.containsKey(K key) Asserts that the map contains the specified key.MapAssert.containsKeys(K... keys) Asserts that the map contains all specified keys.MapAssert.containsValue(V value) Asserts that the map contains the specified value.MapAssert.doesNotContainEntry(K key, V value) Asserts that the map does not contain the specified key-value entry.MapAssert.doesNotContainKey(K key) Asserts that the map does not contain the specified key.MapAssert.doesNotContainValue(V value) Asserts that the map does not contain the specified value.MapAssert.hasSize(int expectedSize) Asserts that the map has the specified size.MapAssert.hasSizeGreaterThan(int size) Asserts that the map has size greater than the specified value.MapAssert.hasSizeLessThan(int size) Asserts that the map has size less than the specified value.MapAssert.isEmpty()Asserts that the map is empty.Asserts that the map equals the expected map.MapAssert.isNotEmpty()Asserts that the map is not empty.MapAssert.isNotNull()Asserts that the map is not null.MapAssert.isNull()Asserts that the map is null.