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);
 }
Example #3
0
 public ScenarioOutlineToJsonScenarioOutlineMapper()
 {
     this.resultMapper  = new TestResultToJsonTestResultMapper();
     this.stepMapper    = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper();
 }