当我在cmd中执行build.xml时,它显示的错误如“无法创建任务或键入testng”。
我已经搜索了有关我的问题的所有StackOverflow答案,但我无法纠正。下面是我的build.xml代码。
<target name="run" depends="compile">
<testng classpath="${test.classpath}:${test.dest}" suitename="suite">
<xmlfileset dir="${ws.home}" includes="TestNG.xml"/>
</testng>
</target>
以下行是taskdef
<taskdef resource="testngtasks" classpath="${lib}/testng-6.9.9.jar"/>
答案 0 :(得分:0)
我已经纠正了这个问题。将下面的行添加到现有的行中。
<taskdef name="testng" classpath="${test.classpath}"
classname="org.testng.TestNGAntTask" />
<taskdef resource="testngtasks" classpath="${lib}/testng-6.9.9.jar"/>