【发布时间】:2017-02-05 19:59:07
【问题描述】:
我有一些包裹
com.company.testing.module1
com.company.testing.module2
com.company.testing.module3
我也有一些类在
中有 TestNG 注释com.company.testing.tests
现在我将 testng.xml 放入
com.company.testing
XML 文件看起来像
<?xml version="1.0" encoding="UTF-8"?>
<suite name="Foo">
<test name="Bar">
<package>
<package name="com.company.testing.tests" />
</package>
</test>
</suite>
如何从 Eclipse 运行该套件?我应该做什么运行配置?
【问题讨论】: