コード例 #1
0
ファイル: PicklesParser.cs プロジェクト: ppnrao/pickles
 public void background(string keyword, string name, string description, int line)
 {
     isInExample = false;
     featureElementState.SetBackgroundActive();
     backgroundBuilder = new ScenarioBuilder();
     backgroundBuilder.SetName(name);
     backgroundBuilder.SetDescription(description);
 }
コード例 #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);
 }
コード例 #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();
        }
コード例 #4
0
ファイル: PicklesParser.cs プロジェクト: ppnrao/pickles
        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();
        }