TestNG 依赖测试
Posted dwdw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TestNG 依赖测试相关的知识,希望对你有一定的参考价值。
package com.course.testng.suite; import org.testng.annotations.Test; public class DepenTest @Test public void test1() System.out.println("test1 run"); throw new RuntimeException(); @Test(dependsOnMethods = "test1") public void test2() System.out.println("test2 run");
package com.course.testng.suite; import org.testng.annotations.Test; public class DepenTest @Test public void test1() System.out.println("test1 run"); @Test(dependsOnMethods = "test1") public void test2() System.out.println("test2 run");
以上是关于TestNG 依赖测试的主要内容,如果未能解决你的问题,请参考以下文章
TestNg依赖高级用法之强制依赖与顺序依赖------TestNg依赖详解
Java自动化测试框架-09 - TestNG之依赖注入篇 (详细教程)