Ancestry.Daisy.Tests.Documentor.Unit.CommentDocumentationTest.ItParsesSummaries C# (CSharp) Method

ItParsesSummaries() private method

private ItParsesSummaries ( Type type, string methodName, string summary ) : void
type System.Type
methodName string
summary string
return void
        public void ItParsesSummaries(Type type, string methodName, string summary)
        {
            var docs = CommentDocumentation.ParseFile("Ancestry.Daisy.Tests.XML");
            var methodDoc = docs.ForMethod(type.GetMethod(methodName));
            Assert.IsNotNull(methodDoc);
            Assert.AreEqual(summary, methodDoc.Summary);
        }