我创建了一个testng.xml文件,其中提到了我所有用于回归测试套件运行的类,但并非所有类都通过该xml运行

时间:2019-06-18 10:28:58

标签: java maven selenium-webdriver testng.xml

下面的XML文件无法运行类中包含的所有方法,而很少有方法正在运行。

这是我的XML:

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

 <suite name="Udds_Automation" >
  <test name="Udds_AutomationTest">
     <classes>
        <class name="com.udds.TestCases.InLetOutLet_Oracle_PlatformTest"/>
        <class name="com.udds.TestCases.InLetOutLet_Hive_PlatformTest"/>
        <class name="com.udds.TestCases.OutLet_NonCloud_PlatformTest"/>
        <class name="com.udds.TestCases.Hive_PlatformTest"/>
        <class name="com.udds.TestCases.InLetOutLet_Text_PlatformTest"/>
        <class name="com.udds.TestCases.Mysql_PlatformTest"/>
      <class name="com.udds.TestCases.InLetOutLet_AwsText_PlatformTest"/>
      <class name="com.udds.TestCases.Text_PlatformTest"/>
      <class name="com.udds.TestCases.DataIngestionTest"/>
      <class name="com.udds.TestCases.AwsText_PlatformTest"/>
      <class name="com.udds.TestCases.Oracle_PlatformTest"/>
        <class name="com.udds.TestCases.OutLetPlatformTest"/>
      <class name="com.udds.TestCases.OutLet_AWS_PlatformTest"/>
      <class name="com.udds.TestCases.InLetOutLet_Text_PlatformTest"/>
       </classes>
       </test>
</suite> <!-- Suite -->

0 个答案:

没有答案