Exemplo n.º 1
0
 public void background(string keyword, string name, string description, int line)
 {
     isInExample = false;
     featureElementState.SetBackgroundActive();
     backgroundBuilder = new ScenarioBuilder();
     backgroundBuilder.SetName(name);
     backgroundBuilder.SetDescription(description);
 }
Exemplo n.º 2
0
 public void background(string keyword, string name, string description, int line)
 {
     isInExample = false;
     featureElementState.SetBackgroundActive();
     backgroundBuilder = new ScenarioBuilder();
     backgroundBuilder.SetName(name);
     backgroundBuilder.SetDescription(description);
 }
Exemplo n.º 3
0
        public void scenario(string keyword, string name, string description, int line)
        {
            CaptureAndStoreRemainingElements();

            isInExample = false;
            featureElementState.SetScenarioActive();
            scenarioBuilder = new ScenarioBuilder();
            scenarioBuilder.SetName(name);
            scenarioBuilder.SetDescription(description);
            scenarioBuilder.AddTags(scenarioTags);
            scenarioTags.Clear();
        }
Exemplo n.º 4
0
        public void scenario(string keyword, string name, string description, int line)
        {
            CaptureAndStoreRemainingElements();

            isInExample = false;
            featureElementState.SetScenarioActive();
            scenarioBuilder = new ScenarioBuilder();
            scenarioBuilder.SetName(name);
            scenarioBuilder.SetDescription(description);
            scenarioBuilder.AddTags(scenarioTags);
            scenarioTags.Clear();
        }