Created
March 15, 2015 00:29
-
-
Save erichexter/a96c01bf6c843400b667 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Test] | |
[TestCaseSource("DocumentContent")] | |
public void Every_Content_type_Should_have_A_categorizer(string documentContentType) | |
{ | |
allTypes.Any(s => s.Name.Contains(documentContentType + "DocumentContentCategorizer")).ShouldBeTrue(String.Format("{0} does not have a DocumentContentCategorizer.", documentContentType)); | |
} | |
DocumentContent = Enum.GetNames(typeof(DocumentContent)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment