junit 配置故障导致TestNG中的测试跳过,XML中没有信息

yyyllmsg  于 2022-11-11  发布在  其他
关注(0)|答案(1)|浏览(146)

我正在试验TestNG,它是从Eclipse工作的。我创建了一个测试套件,并试图从命令行运行它。
生成失败,错误消息为
构建期间的最终输出为:

[testng] ===============================================
   [testng] Suite
   [testng] Total tests run: 1, Failures: 0, Skips: 1
   [testng] Configuration Failures: 1, Skips: 2
   [testng] ===============================================
   [testng] 
   [testng] The tests failed.

testng-results.xml和index.html未报告任何失败。
testng-failed.xml文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Failed suite [Default suite]">
  <test name="Default test(failed)">
    <classes>
      <class name="ABC.test.integration.PersistUrlTests">
        <methods>
          <include name="springTestContextAfterTestClass"/>
          <include name="springTestContextBeforeTestClass"/>
          <include name="springTestContextPrepareTestInstance"/>
          <include name="springTestContextAfterTestMethod"/>
          <include name="checkTest"/>
        </methods>
      </class> <!-- ABC.test.integration.PersistUrlTests -->
    </classes>
  </test> <!-- Default test(failed) -->
</suite> <!-- Failed suite [Default suite] -->

测试如下所示:

@Test
@ContextConfiguration(locations = { "file:spring-configuration/mydb-integration-testing.xml" })
public class PersistUrlTests extends AbstractTestNGSpringContextTests {

        @Autowired
        protected MobiusDatabaseServiceClient mobiusDatabaseServiceClient;

        @Autowired
        UrlDAO urlDAO;

        @Autowired
        ScraperUrlDAO scraperUrlDAO;

        @BeforeClass
        public void init() throws Exception {

        }

        @Test
        public void checkTest() {
            GetActiveCategoriesResponse response = mobiusDatabaseServiceClient.newGetActiveCategoriesCall().call();
            System.out.println(response.getCategoryList());
            Assert.assertTrue(true);
        }
}

套件外观如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="none">
  <test name="Test">
    <classes>
      <class name="ABC.mydatabase.test.integration.PersistUrlTests"/>
    </classes>
  </test> <!-- Test -->
</suite> <!-- Suite -->

但另一方面,这个文件的最后更新时间是过去的。我不确定它是否得到更新或没有。
我不知道如何调试这些由testNG生成的XML文件,因为它们看起来彼此不同步。
到底应该看哪个文件?为什么他们不支持什么“配置”失败了?

7y4bm7vi

7y4bm7vi1#

是否为测试分配了测试侦听器?

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Group D - Using variables" parallel="false" preserve-order="true">
  <listeners>    
    <listener class-name="com.reportng.JUnitXMLReporter"/>
  </listeners>

测试侦听器正在捕获所有失败和跳过的步骤/测试。

相关问题