NUnit.Framework.Constraints.DictionaryContainsKeyConstraint
DictionaryContainsKeyConstraint is used to test whether a dictionary
contains an expected object as a key.
namespace NUnit.Framework.Constraints
{
public class DictionaryContainsKeyConstraint : Constraint
{
protected object Expected { get; }
public DictionaryContainsKeyConstraint(object expected);
public DictionaryContainsKeyValuePairConstraint WithValue(object expectedValue);
}
}