我目前正在学习黄瓜,在非常简单的测试中,我有一些疑问:“如何组织我的StepClasses的最佳方法。
这是我的.功能:
Feature: How many potatoes have in the sack
Scenario: I put one potato in the Bag
Given the bag has 10 potatoes
When I put 1 potato
Then I should be told 11 potatoes
Scenario: I remove one potato from the Bag
Given the bag has 10 potatoes
When I remove 1 potato
Then I should be told 9 potatoes
还有我的阶梯班:
公共类步法 {
private Integer potatoesInTheBag;
@Given("^the bag has 10 potatoes$")
public void the_bag_has_10_potatoes(){
this.potatoesInTheBag=10;
}
@When("^I put 1 potato$")
public void i_put_one_potato(){
this.potatoesInTheBag = potatoesInTheBag + 1;
}
@Then("^I should be told (\\d+) potatoes$")
public void i_should_be_told_potatoes(int potatoes) throws Exception {
assertEquals(potatoesInTheBag.intValue(),potatoes);
}
@When("^I remove 1 potato$")
public void i_remove_one_potato(){
this.potatoesInTheBag = potatoesInTheBag - 1;
}
}
此示例工作正常,但是i_remove_one_potato() 应该留在这里,还是留在另一个步骤类中?另一个问题,如果我想使用场景大纲,在这种情况下我会怎么做?因为答案会有所不同,尽管添加/删除的马铃薯是相同的。有一些好的实践可以指导构建黄瓜测试的过程?
长风秋雁
慕容3067478
相关分类