File tree Expand file tree Collapse file tree
StyleCop.Analyzers/StyleCop.Analyzers.Test/DocumentationRules Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ namespace StyleCop.Analyzers.Test.DocumentationRules
1717 public class SA1648UnitTests
1818 {
1919 [ Fact ]
20- public async Task TestConstructorInheritsFromParentAsync ( )
20+ public async Task TestConstructorWithNoParametersInheritsFromParentAsync ( )
2121 {
2222 var testCode = @"class Base
2323{
@@ -32,8 +32,12 @@ public Test() { }
3232}" ;
3333
3434 await VerifyCSharpDiagnosticAsync ( testCode , DiagnosticResult . EmptyDiagnosticResults , CancellationToken . None ) . ConfigureAwait ( false ) ;
35+ }
3536
36- testCode = @"class Base
37+ [ Fact ]
38+ public async Task TestConstructorWithParametersInheritsFromParentAsync ( )
39+ {
40+ var testCode = @"class Base
3741{
3842 /// <summary>Base constructor.</summary>
3943 public Base(string s, int a) { }
You can’t perform that action at this time.
0 commit comments