Beispiel #1
0
 private RunResults(bool compilationSuccessful, bool behaviorReproduced,
                    CompilFailure reason, CompilerErrorCollection compilerErrors)
 {
     this.compilationFailureReason = reason;
     this.compilationSuccessful    = compilationSuccessful;
     this.behaviorReproduced       = behaviorReproduced;
     this.compilerErrors           = compilerErrors;
 }
Beispiel #2
0
 public static RunResults CompilationFailed(CompilFailure reason, CompilerErrorCollection errors)
 {
     return(new RunResults(false, false, reason, errors));
 }
Beispiel #3
0
 public static RunResults CompilationFailed(CompilFailure reason, CompilerErrorCollection errors)
 {
     return new RunResults(false, false, reason, errors);
 }
Beispiel #4
0
 private RunResults(bool compilationSuccessful, bool behaviorReproduced,
     CompilFailure reason, CompilerErrorCollection compilerErrors)
 {
     this.compilationFailureReason = reason;
     this.compilationSuccessful = compilationSuccessful;
     this.behaviorReproduced = behaviorReproduced;
     this.compilerErrors = compilerErrors;
 }