gpt4 book ai didi

java - TestNG - 进程结束,退出代码为 0

转载 作者:行者123 更新时间:2023-11-29 07:41:59 30 4
gpt4 key购买 nike

我正在使用 Testng,我有两个类 Util 和 test1

我在 Test1 类中有 4 个简单的测试方法,仅打印方法名称。在运行 testng.xml 时,它会打印出每个方法的预期语句一秒,然后将其替换为错误 - 进程已完成,退出代码为 0。我正在使用 Intellij IDE。任何人都可以对此提出任何建议。

代码:

class util {....}
class tets1 {
@Test
public void testmethod2(){
System.out.println("In testmethod2");
}

@Test
public void testmethod3(){
System.out.println("In testmetho3");
}

@Test
public void testmethod4()
{
System.out.println("In testmethod4");
}

@Test
public void testmethod5(){
System.out.println("In testmetho5");
}

Testng.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="Suite1">
<test name="test1">
<classes>
<class name="TagPackage.Test1"/>
</classes>
</test>
</suite>

最佳答案

这不是错误,这是 IntelliJ 中的正确行为。

控制台显示每个测试的输出,消息 Process finished with exit code 0 表明测试运行成功。如果测试失败,这将显示其他内容(对于 Spock,这将返回 255)。

如果您查看控制台左侧,您应该会看到已执行的测试,或者单击树顶部的测试名称,您将看到所有控制台输出。

关于java - TestNG - 进程结束,退出代码为 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29160502/

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