public TableRowToJsonTableRowMapper()
 {
     this.testResultMapper = new TestResultToJsonTestResultMapper();
 }
Exemple #2
0
 public ScenarioOutlineToJsonScenarioOutlineMapper()
 {
     this.resultMapper  = new TestResultToJsonTestResultMapper();
     this.stepMapper    = new StepToJsonStepMapper();
     this.exampleMapper = new ExampleToJsonExampleMapper();
 }
Exemple #3
0
 public FeatureToJsonFeatureMapper()
 {
     this.scenarioMapper        = new ScenarioToJsonScenarioMapper();
     this.scenarioOutlineMapper = new ScenarioOutlineToJsonScenarioOutlineMapper();
     this.resultMapper          = new TestResultToJsonTestResultMapper();
 }
Exemple #4
0
 public TableRowToJsonTableRowMapper()
 {
     this.testResultMapper = new TestResultToJsonTestResultMapper();
 }
 public ScenarioToJsonScenarioMapper()
 {
     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();
 }