我有一些包裹
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 运行套件?我应该做什么运行配置?