Exemplo n.º 1
0
        public ScenarioOutlineBuilder(TableBuilder tableBuilder)
        {
            this.steps = new List<Step>();
            this.tags = new List<string>();
			this.examples = new List<Example>();
        }
Exemplo n.º 2
0
 public ScenarioOutlineBuilder(TableBuilder tableBuilder)
 {
     this.steps    = new List <Step>();
     this.tags     = new List <string>();
     this.examples = new List <Example>();
 }
Exemplo n.º 3
0
 public StepBuilder(TableBuilder tableBuilder, I18n nativeLanguageService)
 {
     this.tableBuilder          = tableBuilder;
     this.nativeLanguageService = nativeLanguageService;
 }
Exemplo n.º 4
0
		public ExampleBuilder()
		{
			this.tableBuilder = new TableBuilder();
		}
Exemplo n.º 5
0
 public StepBuilder(TableBuilder tableBuilder, I18n nativeLanguageService)
 {
     this.tableBuilder = tableBuilder;
     this.nativeLanguageService = nativeLanguageService;
 }
Exemplo n.º 6
0
 public ExampleBuilder()
 {
     this.tableBuilder = new TableBuilder();
 }