我爲JBehave自動測試編寫stroy場景。這裏需要編寫幾個類似的場景,通過常量參數不同。JBehave故事參數示例
爲了不復制大量腳本,我希望將參數添加到我的故事中,並使用不同的參數多次調用它。
我如何使用「GivenStories」來做到這一點?
在這裏,我發現有關如何做到這一點的tutuorials http://jbehave.org/reference/preview/given-stories.html,但缺乏它如何工作的例子。 我試圖做到這一點這樣:
Scenario: A scenario in which the user can run other stories as pre-requisites
parametrized using the rows of the Examples table
GivenStories: path/to/precondition.story#{0},
path/to/precondition.story#{1}
Given ... // normal scenario steps
Examples:
|One|Two|
|uno|due|
|un|deux|
,但字符串「一」和「二」不是由字符串代替形成例表。也許我應該在給定的故事中宣佈我的觀點?無論如何,我想知道我可以如何將參數注入到我的故事中,並會嘗試每個建議的方法。
謝謝。