We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 761b862 commit 922d6ddCopy full SHA for 922d6dd
tests/DendroDocs.Tool.Tests/DocumentationTagContentParsingTests.cs
@@ -386,7 +386,7 @@ class Test
386
}
387
388
[TestMethod]
389
- public void TagWithSeeAlso_Should_IgnoreSeeAlso()
+ public void SummaryWithSeeAlso_Should_DisplaySeeAlso()
390
{
391
// Assign
392
var source =
@@ -404,7 +404,7 @@ public void Method() {}
404
var types = TestHelper.VisitSyntaxTree(source);
405
406
// Assert
407
- types[0].Methods[0].DocumentationComments!.Summary.Should().BeEmpty();
+ types[0].Methods[0].DocumentationComments!.Summary.Should().Be("See also.");
408
409
410
0 commit comments