0

我正在尝试通过 ant 运行我在 eclipse 中创建的 testng 项目。出现以下错误:

无法创建任务或键入 testng。名称未定义......这是片段:

    <testng classpath="${test.classpath}:${test.dest}" suitename="suite">   
        <xmlfileset dir="${ws.home}" includes="testng.xml"/>
    </testng>
</target>

我也尝试添加 testng 任务,但没有任何反应。

请帮忙!...

4

2 回答 2

0

你可以在这里找到更多:http: //testng.org/doc/ant.html

基本上,您需要有一个 taskdef 标签,例如:

<taskdef resource="testngtasks" classpath="path/to/testng.jar"/>

您编写的 testng 任务似乎很好。

于 2013-10-01T10:10:32.203 回答
0

您需要将 TestNG 任务添加到 Ant

 <taskdef resource="testngtasks" classpath="${extralib.dir}/testng5.13.1.jar" />
于 2013-10-01T10:12:08.710 回答