gpt4 book ai didi

java - 仅当@Test1通过时才运行@Test2

转载 作者:行者123 更新时间:2023-12-02 04:07:24 27 4
gpt4 key购买 nike

使用TestTNG,如何仅在@Test1通过时执行@Test2

public static void main (String args[]) {
@beforemethod
public static beforemethod() {
/////
}

@test
public static void firsttest() {
\\\\
}

@test
public static void secondtest() {
\\\\\\
}

@test
public static void thirdtest() {
\\\\
}

@Aftermethod
public static aftermethod() {
\\\
}

firsttest()通过时,secondtest()应该执行,否则应该停止执行。

我们该如何写这个?

最佳答案

您可以像这样使用dependsOnMethods注释:

@Test(dependsOnMethods = { "method1" } )

然后,仅当 method1 成功时(并且始终在其之后),您的测试才会执行。

关于java - 仅当@Test1通过时才运行@Test2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34135140/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com