Example #1
0
 internal static DiagnosticResult Diagnostic(string diagnosticId)
 => CSharpCodeFixVerifier <TAnalyzer, TCodeFix, XUnitVerifier> .Diagnostic(diagnosticId);
Example #2
0
 protected sealed override async Task VerifyCodeFixAsync(string markupCode, string expected, int codeActionIndex)
 {
     await CSharpCodeFixVerifier <TAnalyzer, TCodeFix> .VerifyCodeFixAsync(markupCode, expected, codeActionIndex);
 }
 public static DiagnosticResult Diagnostic(DiagnosticDescriptor descriptor)
 => CSharpCodeFixVerifier <TAnalyzer, TCodeFix, XUnitVerifier> .Diagnostic(descriptor);
 public static DiagnosticResult Diagnostic()
 => CSharpCodeFixVerifier <TAnalyzer, TCodeFix, XUnitVerifier> .Diagnostic();
 internal static DiagnosticResult Diagnostic()
 => CSharpCodeFixVerifier <TAnalyzer, EmptyCodeFixProvider, XUnitVerifier> .Diagnostic();
Example #6
0
 public static DiagnosticResult Diagnostic(string diagnosticId)
 => CSharpCodeFixVerifier <TAnalyzer, EmptyCodeFixProvider, XUnitVerifier> .Diagnostic(diagnosticId);