コード例 #1
0
ファイル: Session.cs プロジェクト: manderdev/monkeypants
 public void RunSetup(string inputPath)
 {
     TestSetupResult result = new TestSetupResult(inputPath);
     resultsWriter.Begin(result);
     RunTests(inputPath);
     resultsWriter.End(result);
 }
コード例 #2
0
 public void End(TestSetupResult setup)
 {
 }
コード例 #3
0
 public void Begin(TestSetupResult setup)
 {
 }
コード例 #4
0
 public void Begin(TestSetupResult test)
 {
     channel.AppendLine("SETUP: " + test);
 }
コード例 #5
0
 public void End(TestSetupResult test)
 {
     channel.AppendLine("END SETUP: " + test);
 }
コード例 #6
0
 // todo: expandable nested table
 public void End(TestSetupResult test)
 {
     xmlWriter.WriteRaw("YO YO YO YO end of setup for " + test);
 }
コード例 #7
0
 // todo: expandable nested table
 public void Begin(TestSetupResult test)
 {
     xmlWriter.WriteRaw("YO YO YO YO starting setup for " + test);
 }