在我的代码中,我有:
@BeforeClass
public static void createInput() {
//some code
}
@Test
public void testSomething() {
// some code
}
在testng-results.xml中,结果将显示以下内容:
<test-method status="PASS" signature="createInput()" name="createInput" is-config="true" >
</test-method>
<test-method status="PASS" signature="testSomething()" name="testSomething">
</test-method>
是否可以在结果中排除带有@BeforeClass批注的方法?我知道有一个“ is-config”属性可以将其标识为不是实际的测试用例,但是有没有办法完全排除它呢?