Exemplo n.º 1
0
 public void OnMutantTested(IReadOnlyMutant result)
 {
     // Method to implement the interface
 }
 public void OnMutantTested(IReadOnlyMutant result)
 {
     // This reporter does not report during the testrun
 }
Exemplo n.º 3
0
 public void OnMutantTested(IReadOnlyMutant result)
 {
 }
Exemplo n.º 4
0
 public void OnMutantTested(IReadOnlyMutant result)
 {
     // For implementing interface
 }
Exemplo n.º 5
0
 public bool NeedAllTests(IReadOnlyMutant mutant)
 {
     return(mutant.IsStaticValue || this._mutantsInStatic.Contains(mutant.Id));
 }
Exemplo n.º 6
0
 public void OnMutantTested(IReadOnlyMutant result)
 {
     _progressBarReporter.ReportRunTest();
     _mutantsResultReporter.ReportMutantTestResult(result);
 }
Exemplo n.º 7
0
 private static T ApplyMutant <T>(T node, IReadOnlyMutant mutant) where T : SyntaxNode
 {
     return(node.ReplaceNode(mutant.Mutation.OriginalNode, mutant.Mutation.ReplacementNode));
 }
Exemplo n.º 8
0
 public void OnMutantTested(IReadOnlyMutant result)
 {
     // This reporter does not currently report when mutants are tested
 }