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); }