Example #1
0
 public PageResult(string title, string content, TestCounts testCounts)
 {
     Title = title;
     Content = content;
     TestCounts = testCounts;
 }
 public void WriteFinalCount(TestCounts summary)
 {
     WriteCounts(summary, "finalCounts");
 }
Example #3
0
 public PageResult(string title, string content, TestCounts testCounts)
 {
     Title      = title;
     Content    = content;
     TestCounts = testCounts;
 }
Example #4
0
 void HandleTestStatus(TestCounts counts)
 {
     myReporter.Write(counts.Letter);
     TestCounts.TallyCounts(counts);
 }
Example #5
0
 public void SendCounts(TestCounts counts)
 {
     channel.Write(Protocol.FormatCounts(counts));
 }
Example #6
0
 public SuiteRunner(Memory memory, ProgressReporter theReporter)
 {
     TestCounts  = new TestCounts();
     myReporter  = theReporter;
     this.memory = memory;
 }
Example #7
0
 void RunTest()
 {
     myStoryTest = new StoryTest(storyTables, (t, c) => { resultCounts = c; });
     myStoryTest.Execute(configuration);
 }
Example #8
0
 void RunTest(Fixture fixture, Parse parse)
 {
     fixture.Processor = processor;
     fixture.DoTable(parse.Parts);
     resultCounts = fixture.TestStatus.Counts;
 }
 public void SendCounts(TestCounts counts)
 {
     socketStream.Write(Protocol.FormatCounts(counts));
 }
Example #10
0
 public void WriteTest(Tree <Cell> test, TestCounts counts)
 {
 }