ArchiMetrics.CodeReview.Rules.Tests.DocumentationDescription.DocumentationDescription C# (CSharp) 메소드

DocumentationDescription() 공개 메소드

public DocumentationDescription ( ) : System.Collections.Generic
리턴 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();
        }