标签:dep not col ota src pac 技术 time package
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"); } }
标签:dep not col ota src pac 技术 time package
原文地址:https://www.cnblogs.com/dwdw/p/11405515.html