Skip to content

Commit b7d10a8

Browse files
committed
Split tests
1 parent 49d59ce commit b7d10a8

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers.Test/DocumentationRules/SA1648UnitTests.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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) { }

0 commit comments

Comments
 (0)