分组
最后更新于:2022-04-01 03:49:45
# 分组
`<groups>` 元素及其 `<include>`、`<exclude>`、`<group>` 子元素用于从带有 `@group` 标注(相关文档参见 [the section called “@group”](# "@group"))的测试中选择需要运行(或不运行)的分组。
~~~
<groups>
<include>
<group>name</group>
</include>
<exclude>
<group>name</group>
</exclude>
</groups>
~~~
以上 XML 配置对应于以如下选项调用 TextUI 测试执行器:
-
`--group name`
-
`--exclude-group name`