设置执行案例的模拟器
Cucumber 有一个配置文件,在执行 Cucumber 运行案例时,首先会调用此文件。
在Cucumber执行的目录,即 features 目录同级,建一个.config(隐藏文件,在终端里使用命令)目录。config目录下,新建一个 Cucumber.xml文件 将如下内容copy 至此文件保存:
<code class="hljs java has-numbering" style="display: block; padding: 0px; background-color: transparent; color: inherit; box-sizing: border-box; font-family: 'Source Code Pro', monospace;font-size:undefined; white-space: pre; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; word-wrap: normal; background-position: initial initial; background-repeat: initial initial;"><span class="hljs-keyword" style="color: rgb(0, 0, 136); box-sizing: border-box;">default</span>: -r features -r features_ios_support --tags ~<span class="hljs-annotation" style="color: rgb(155, 133, 157); box-sizing: border-box;">@wip</span> --tags ~<span class="hljs-annotation" style="color: rgb(155, 133, 157); box-sizing: border-box;">@manual</span> --tags ~<span class="hljs-annotation" style="color: rgb(155, 133, 157); box-sizing: border-box;">@ignore</span> --tags ~<span class="hljs-annotation" style="color: rgb(155, 133, 157); box-sizing: border-box;">@stg</span> --tags ~<span class="hljs-annotation" style="color: rgb(155, 133, 157); box-sizing: border-box;">@android</span>_only DEVICE_TARGET=<span class="hljs-string" style="color: rgb(0, 136, 0); box-sizing: border-box;">'iPhone 6 (8.1 Simulator)'</span></code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; background-color: rgb(238, 238, 238); top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right-width: 1px; border-right-style: solid; border-right-color: rgb(221, 221, 221); list-style: none; text-align: right;"><li style="box-sizing: border-box; padding: 0px 5px;">1</li></ul>
- -r:加载目录 可以指定加载顺序,ruby 特性后加载的类的方法会将先加载的覆盖
- –tags:可以给指定案例添加 tag 执行时,只执行选定 tag