var websters = new Dictionary<string, string> { { "Embiggen", "To empower or embolden." } };websters.ShouldContainKey("Cromulent");
Exception
webstersshould contain key"Cromulent"but does not
var websters = new Dictionary<string, string> { { "Chazzwazzers", "What Australians would have called a bull frog." } };websters.ShouldNotContainKey("Chazzwazzers");
Exception
webstersshould not contain key"Chazzwazzers"but does