public ScenarioToJsonScenarioMapper()
 {
     this.resultMapper = new TestResultToJsonTestResultMapper();
     this.stepMapper   = new StepToJsonStepMapper();
 }
 public ScenarioOutlineToJsonScenarioOutlineMapper()
 {
     this.resultMapper = new TestResultToJsonTestResultMapper();
     this.stepMapper = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper();
 }
 public ScenarioOutlineToJsonScenarioOutlineMapper(ILanguageServicesRegistry languageServicesRegistry)
 {
     this.resultMapper  = new TestResultToJsonTestResultMapper();
     this.stepMapper    = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper(languageServicesRegistry);
 }
예제 #4
0
 public ScenarioOutlineToJsonScenarioOutlineMapper()
 {
     this.resultMapper  = new TestResultToJsonTestResultMapper();
     this.stepMapper    = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper();
 }