来自不同类的TestNGdependsOnMethods

来自不同类的TestNGdependsOnMethods,第1张

来自不同类的TestNGdependsOnMethods

将方法放在中

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  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5055385.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存