英文:
How to add multiple files in xml file in TestNG
问题
在创建用于运行所有Java文件的XML文件时,未显示所有Java文件。
如果手动添加文件名,仍然无法运行所有Java文件。
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite">
<test thread-count="5" name="Test">
<classes>
<class name="Entry.StatusHistory"/>
<class name="Entry.Dashboard"/>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->
它只运行Entry.StatusHistory这个文件。如何解决这个问题?
英文:
While creating xml file to run all java files, it is not showing all java file,
if adding file name manually then also it is not running all the java file
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite">
<test thread-count="5" name="Test">
<classes>
<class name="Entry.StatusHistory"/>
<class name="Entry.Dashboard"/>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->
It is only running Entry.StatusHistory this file.
How to solve this issue?
答案1
得分: 1
请确保您在Dashboard类中使用了testNG注释。因为当您的类中没有测试用例(@test)时会出现这种情况。因此,testNG.xml将不会运行该类。
英文:
Please make sure that you've used testNG annotations in Dashboard class. As this happens when you have no test cases in your class(@test). So, testNG.xml will not run that class.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论