2013-12-24 45 views

回答

2

您可以用幾種方法:

  1. 在操作系統級別:運行命令多次或寫 適當的shell腳本。

  2. 在黃瓜級別。例如。你有 以下特點文件:

Feature: My great feature Scenario: My scenario Given My given step one When My when step two Then My then step three

您可以強制黃瓜JVM運行了好幾次例如3通過將「方案」,以「方案概述」,用「例子」:

Feature: My great feature 
    Scenario **Outline**: My scenario 
    Given My given step <number> 
    When My when step two 
    Then My then step three 
Examples: to run this scenario several times 
    |number| 
    |one| 
    |one| 
    |one| 

它看起來有些人爲,但工程。 我使用這種方法來收集依賴於很多條件的複雜測試的統計數據。