标签: junit junit4 maven-failsafe-plugin
我想排除那些具有故障安全配置部分中提到的所有类别的测试类。
目前,我认为它不包括配置中提到的任何类别的所有测试类。
<excludeGroups> Group1, Group2 </excludeGroups>
@Categories(Group1.class) public class SampleTest { }
我希望SampleTest以提到的配置运行,但是没有运行。