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

FileHeaderInspectionTests() 공개 메소드

public FileHeaderInspectionTests ( ) : System.Linq
리턴 System.Linq
        public FileHeaderInspectionTests()
        {
            var exemptPatterns = new ExemptPatterns();
            exemptPatterns.Add(@"^\d\.\d\.\d{1,5}\.\d$");
            exemptPatterns.Add(@"Runtime");
            var spellChecker = new SpellChecker(exemptPatterns);
            _inspector = new NodeReviewer(new[] { new SingleLineCommentLanguageRule(spellChecker) }, Enumerable.Empty<ISymbolEvaluation>());
        }