コード例 #1
0
 private RunResults(bool compilationSuccessful, bool behaviorReproduced,
                    CompilFailure reason, CompilerErrorCollection compilerErrors)
 {
     this.compilationFailureReason = reason;
     this.compilationSuccessful    = compilationSuccessful;
     this.behaviorReproduced       = behaviorReproduced;
     this.compilerErrors           = compilerErrors;
 }
コード例 #2
0
 public static RunResults CompilationFailed(CompilFailure reason, CompilerErrorCollection errors)
 {
     return(new RunResults(false, false, reason, errors));
 }
コード例 #3
0
ファイル: testcase.cs プロジェクト: jduv/WinBert
 public static RunResults CompilationFailed(CompilFailure reason, CompilerErrorCollection errors)
 {
     return new RunResults(false, false, reason, errors);
 }
コード例 #4
0
ファイル: testcase.cs プロジェクト: jduv/WinBert
 private RunResults(bool compilationSuccessful, bool behaviorReproduced,
     CompilFailure reason, CompilerErrorCollection compilerErrors)
 {
     this.compilationFailureReason = reason;
     this.compilationSuccessful = compilationSuccessful;
     this.behaviorReproduced = behaviorReproduced;
     this.compilerErrors = compilerErrors;
 }