0

我正在尝试运行多个测试套装。为此,我正在使用“套件文件”。但问题是当我执行此代码时,它正在执行当前名为“进程”的当前 xml 文件套件,但在报告中它显示在顶部。

我的 testng.xml 文件是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
  <suite name="Process" verbose="1" preserve-order="true" >

这些是我用来生成报告的听众

    <listeners>
      <listener class-name="org.uncommons.reportng.HTMLReporter"/>
      <listener class-name="org.uncommons.reportng.JUnitXMLReporter"/>
    </listeners> 
    <suite-files>
     <suite-file path="testnglocation.xml" /> 
     <suite-file path="testngdepartment.xml" />
    </suite-files>
  <test name="Process" >

    <classes>
      <class name="AdministrationTestCases.CreateProcess_TC"></class>
      <class name="AdministrationTestCases.UpdateProcess_TC"></class>
      <class name="AdministrationTestCases.DeleteProcess_TC"></class>
    </classes>
  </test> 
</suite>   

我的测试报告在这里:

报告

4

0 回答 0