mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00

Contains two analyzers with fixes * Use AnsiConsole over System.Console * Favor local instance over static implementation
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using Microsoft.CodeAnalysis;
|
|
using Microsoft.CodeAnalysis.Testing;
|
|
using Spectre.Console.Analyzer;
|
|
using Xunit;
|
|
using AnalyzerVerify =
|
|
Spectre.Console.Tests.CodeAnalyzers.SpectreAnalyzerVerifier<
|
|
Spectre.Console.Analyzer.UseSpectreInsteadOfSystemConsoleAnalyzer>;
|
|
|
|
namespace Spectre.Console.Tests.CodeAnalyzers.Analyzers
|
|
{
|
|
public class UseSpectreInsteadOfSystemConsoleAnalyzerTests
|
|
{
|
|
private static readonly DiagnosticResult _expectedDiagnostics = new(
|
|
Descriptors.S1000_UseAnsiConsoleOverSystemConsole.Id,
|
|
DiagnosticSeverity.Warning);
|
|
|
|
[Fact]
|
|
public async void Console_Write_Has_Warning()
|
|
{
|
|
const string Source = @"
|
|
using System;
|
|
|
|
class TestClass {
|
|
void TestMethod()
|
|
{
|
|
Console.Write(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
await AnalyzerVerify
|
|
.VerifyAnalyzerAsync(Source, _expectedDiagnostics.WithLocation(7, 9))
|
|
.ConfigureAwait(false);
|
|
}
|
|
|
|
[Fact]
|
|
public async void Console_WriteLine_Has_Warning()
|
|
{
|
|
const string Source = @"
|
|
using System;
|
|
|
|
class TestClass
|
|
{
|
|
void TestMethod() {
|
|
Console.WriteLine(""Hello, World"");
|
|
}
|
|
}";
|
|
|
|
await AnalyzerVerify
|
|
.VerifyAnalyzerAsync(Source, _expectedDiagnostics.WithLocation(7, 9))
|
|
.ConfigureAwait(false);
|
|
}
|
|
}
|
|
} |