Skip to content

Commit d2bc750

Browse files
authored
Merge pull request #3135 from VitaliAntonov/issue-2618
Improve SA1135 handling of static usings
2 parents 1ee512c + 3e03710 commit d2bc750

File tree

2 files changed

+26
-18
lines changed

2 files changed

+26
-18
lines changed

StyleCop.Analyzers/StyleCop.Analyzers.Test/ReadabilityRules/SA1135UnitTests.cs

+26-12
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,6 @@ namespace System.Threading
103103
await VerifyCSharpDiagnosticAsync(testCode, DiagnosticResult.EmptyDiagnosticResults, CancellationToken.None).ConfigureAwait(false);
104104
}
105105

106-
[Fact]
107-
public async Task TestStaticUsingsAsync()
108-
{
109-
const string testCode = @"
110-
namespace System.Threading
111-
{
112-
using static Console;
113-
}";
114-
115-
await VerifyCSharpDiagnosticAsync(testCode, DiagnosticResult.EmptyDiagnosticResults, CancellationToken.None).ConfigureAwait(false);
116-
}
117-
118106
[Fact]
119107
public async Task TestFixAllAsync()
120108
{
@@ -455,5 +443,31 @@ namespace System
455443

456444
await VerifyCSharpDiagnosticAsync(testCode, DiagnosticResult.EmptyDiagnosticResults, CancellationToken.None).ConfigureAwait(false);
457445
}
446+
447+
[Fact]
448+
[WorkItem(2618, "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/2618")]
449+
public async Task TestUnqualifiedStaticUsingsAsync()
450+
{
451+
const string testCode = @"
452+
namespace System.Threading
453+
{
454+
using static Console;
455+
}
456+
";
457+
458+
const string fixedCode = @"
459+
namespace System.Threading
460+
{
461+
using static System.Console;
462+
}
463+
";
464+
465+
DiagnosticResult[] expected =
466+
{
467+
Diagnostic(SA1135UsingDirectivesMustBeQualified.DescriptorType).WithLocation(4, 5).WithArguments("System.Console"),
468+
};
469+
470+
await VerifyCSharpFixAsync(testCode, expected, fixedCode, CancellationToken.None).ConfigureAwait(false);
471+
}
458472
}
459473
}

StyleCop.Analyzers/StyleCop.Analyzers/ReadabilityRules/SA1135UsingDirectivesMustBeQualified.cs

-6
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,6 @@ private static void CheckUsingDeclaration(SyntaxNodeAnalysisContext context, Usi
7373
return;
7474
}
7575

76-
if (!usingDirective.StaticKeyword.IsKind(SyntaxKind.None))
77-
{
78-
// using static types is not considered.
79-
return;
80-
}
81-
8276
if (usingDirective.HasNamespaceAliasQualifier())
8377
{
8478
// global qualified namespaces are OK.

0 commit comments

Comments
 (0)