Example #1
0
 void RunTest(Fixture fixture, Parse parse)
 {
     fixture.Processor = processor;
     fixture.DoTable(parse.Parts);
     resultCounts = fixture.TestStatus.Counts;
     testResult   = new ParseStoryTestString().Parse(typeof(StoryTableString), new TypedValue(), parse.Parts).ValueString;
 }
Example #2
0
 void RunTest(Fixture fixture, Parse parse) {
     fixture.Processor = processor;
     fixture.DoTable(parse.Parts);
     resultCounts = fixture.TestStatus.Counts;
     testResult = new ParseStoryTestString().Parse(typeof(StoryTableString), new TypedValue(), parse.Parts).ValueString;
 }
Example #3
0
 void RunTest(Fixture fixture, Parse parse)
 {
     fixture.Processor = new Service.Service();
     fixture.DoTable(parse.Parts);
     resultCounts = fixture.TestStatus.Counts;
 }
Example #4
0
 void RunTest(Fixture fixture, Parse parse) {
     fixture.Processor = new Service.Service();
     fixture.DoTable(parse.Parts);
     resultCounts = fixture.TestStatus.Counts;
 }
Example #5
0
 private void RunFixture(Parse theTables, Fixture theFixture)
 {
     theFixture.Processor = new Service.Service();
     theFixture.DoTable(theTables);
 }