ArchiMetrics.CodeReview.Rules.Tests.DocumentationDescription.DocumentationDescription C# (CSharp) Method

DocumentationDescription() public method

public DocumentationDescription ( ) : System.Collections.Generic
return System.Collections.Generic
        public DocumentationDescription()
        {
            var spellChecker = new Mock<ISpellChecker>();
            spellChecker.Setup(x => x.Spell(It.IsAny<string>())).Returns(true);

            _rules = AllRules.GetSyntaxRules(spellChecker.Object).AsArray();
        }