Ejemplo n.º 1
0
 /**
  * Verifies that the actual map does not contain the given value.
  *
  * @param value the value that should not be in actual map.
  * @throws AssertionError if the actual map is {@code null}.
  * @throws AssertionError if the actual map contains the given value.
  */
 public MapAssert<K, V> doesNotContainValue(V value) {
   maps.assertDoesNotContainValue(info, actual, value);
   return this;
 }