【发布时间】:2018-06-13 16:38:28
【问题描述】:
给定一个特征文件,如下所示:
Feature: Coffee improves mood in the background
Background:
Given the user drank coffee
Scenario Outline: Coffee changes peoples moods
Then user <USER> should be <MOOD>
Examples:
| USER | MOOD |
| Michael | happy |
| Elvis | electrified |
| John | sad |
后台测试步骤“用户喝咖啡”应该运行1次还是3次?
【问题讨论】: