public async Task Verify(AnnotatedSourceFile sourceFile)
 {
     await sourceFile.VerifyAsync <OneLevelOfIndentationAnalyzer>();
 }
 public async Task Verify(AnnotatedSourceFile sourceFile)
 {
     await sourceFile.VerifyAsync <ObjectNotFullyInitializedAfterConstructorAnalyzer>();
 }
Ejemplo n.º 3
0
 public async Task Verify(AnnotatedSourceFile sourceFile)
 {
     await sourceFile.VerifyAsync <TooManyParametersAnalyzer>();
 }
Ejemplo n.º 4
0
 public async Task Verify(AnnotatedSourceFile sourceFile)
 {
     await sourceFile.VerifyAsync <ConstructorContainsControlFlowAnalyzer>();
 }
Ejemplo n.º 5
0
 public async Task Verify(AnnotatedSourceFile sourceFile)
 {
     await sourceFile.VerifyAsync <NegativeConditionalAnalyzer>();
 }