pub trait EntryHashMapAssertions<'s, K: Hash + Eq, V: PartialEq> {
    fn contains_entry<E: Borrow<K>, F: Borrow<V>>(
        &mut self,
        expected_key: E,
        expected_value: F
    ); fn does_not_contain_entry<E: Borrow<K>, F: Borrow<V>>(
        &mut self,
        expected_key: E,
        expected_value: F
    ); }

Required Methods

fn contains_entry<E: Borrow<K>, F: Borrow<V>>(
    &mut self,
    expected_key: E,
    expected_value: F
)

fn does_not_contain_entry<E: Borrow<K>, F: Borrow<V>>(
    &mut self,
    expected_key: E,
    expected_value: F
)

Implementors