containsPair method

void containsPair(
  1. K key,
  2. V value
)

Checks that the tested map contains the key-value pair.

Implementation

void containsPair(K key, V value) {
  test.expect(this.value, test.containsPair(key, value));
}