I have a assertion like this:
validationResults.Select(result => result.Tag).ToList().Should().Contain(ServiceContractRuleKey.MedicalDeclarationNumberRequired "because a validation error should be added that the MedicalDeclarationNumber is missing.");
How can i make it to assert that the validationResults should not contain the 'ServiceContractRuleKey.MedicalDeclarationNumberRequired'
?
Thanks in advance.