将方法放在中
group并使用
dependsOnGroups。
class c1 { @Test(groups={"c1.verifyConfig"}) public void verifyConfig() { //verify some test config parameters }}class c2 { @Test(dependsonGroups={"c1.verifyConfig"}) public void dotest() { //Actual test }}
建议验证
@Before*中的配置,并在该处出现问题时抛出错误,以使测试无法运行。这样,测试可以只关注测试。
class c2 { @BeforeClass public static void verifyConfig() { //verify some test config parameters //Usually just throw exceptions //Assert statements will work } @Test public void dotest() { //Actual test }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)