-1
BDD 방식으로 다른 국가에서 제품을 만들지 테스트해야합니다. 나는 오이 시나리오 개요를 사용했습니다.오이 모범 사례 : 예제 테이블에 열을 추가하거나 단계를 추가 하시겠습니까?
나는 화폐가 창조를 위해 필수적이지 않다는 것을 언급해야한다, 그것은 나라와 연결되어있다.
Scenario outline: I am able to create a product in different countries
Given a product that costs <price> in <country>
When I create this product
Then the price is <price>
And the currency is Pound if country is England
And the currency is Euro if country is Spain
Examples:
| country | price |
| England | 3 |
| Spain | 32 |
가장 좋은 방법은 무엇입니까 :
Scenario outline: I am able to create a product in different countries
Given a product that costs <price> in <country>
When I create this product
Then the price is <price>
And the currency is <currency>
Examples:
| country | price | currency |
| England | 3 | Pound |
| Spain | 32 | Euro |
가 동료가이 일을 썼다 :
나는 다음과 같은 시험을 썼다?미리 감사드립니다.
감사합니다. – VIJ