Overload | Description |
---|---|
NotContain(KeyValuePair<TKey,TValue>[]) | Asserts that the current dictionary does not contain the specified items. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
NotContain(IEnumerable<KeyValuePair<TKey,TValue>>,String,Object[]) | Asserts that the current dictionary does not contain the specified items. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
NotContain(KeyValuePair<TKey,TValue>,String,Object[]) | Asserts that the current dictionary does not contain the specified item. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
NotContain(TKey,TValue,String,Object[]) | Asserts that the current dictionary does not contain the specified value for the supplied key. Key comparison will honor the equality comparer of the dictionary when applicable. Values are compared using their System.Object.Equals(System.Object) implementation. |
NotContain(Expression<Func<KeyValuePair<TKey,TValue>,Boolean>>,String,Object[]) | (Inherited from FluentAssertions.Collections.GenericCollectionAssertions<TCollection,KeyValuePair<TKey,TValue>,TAssertions>) |