public ScenarioOutlineToJsonScenarioOutlineMapper(ILanguageServicesRegistry languageServicesRegistry)
 {
     this.resultMapper  = new TestResultToJsonTestResultMapper();
     this.stepMapper    = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper(languageServicesRegistry);
 }
 public ScenarioToJsonScenarioMapper()
 {
     this.resultMapper = new TestResultToJsonTestResultMapper();
     this.stepMapper   = new StepToJsonStepMapper();
 }
 public FeatureToJsonFeatureMapper(ILanguageServicesRegistry languageServicesRegistry)
 {
     this.scenarioMapper        = new ScenarioToJsonScenarioMapper();
     this.scenarioOutlineMapper = new ScenarioOutlineToJsonScenarioOutlineMapper(languageServicesRegistry);
     this.resultMapper          = new TestResultToJsonTestResultMapper();
 }
 public TableRowToJsonTableRowMapper()
 {
     this.testResultMapper = new TestResultToJsonTestResultMapper();
 }
 public ScenarioOutlineToJsonScenarioOutlineMapper()
 {
     this.resultMapper = new TestResultToJsonTestResultMapper();
     this.stepMapper = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper();
 }
Пример #6
0
 public ScenarioOutlineToJsonScenarioOutlineMapper()
 {
     this.resultMapper  = new TestResultToJsonTestResultMapper();
     this.stepMapper    = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper();
 }
 public FeatureToJsonFeatureMapper()
 {
     this.scenarioMapper = new ScenarioToJsonScenarioMapper();
     this.scenarioOutlineMapper = new ScenarioOutlineToJsonScenarioOutlineMapper();
     this.resultMapper = new TestResultToJsonTestResultMapper();
 }
Пример #8
0
 public TableRowToJsonTableRowMapper()
 {
     this.testResultMapper = new TestResultToJsonTestResultMapper();
 }
Пример #9
0
 public FeatureToJsonFeatureMapper()
 {
     this.scenarioMapper        = new ScenarioToJsonScenarioMapper();
     this.scenarioOutlineMapper = new ScenarioOutlineToJsonScenarioOutlineMapper();
     this.resultMapper          = new TestResultToJsonTestResultMapper();
 }