TestNg使用Ant

时间:2010-11-03 12:38:19

标签: ant testng

当我使用testng.xml运行Test NG测试时,它运行正常,但是如果我使用ant(Build.xml)运行testng.xml,则会出现错误在类路径中无法正常运行

的testng.xml: -

?xml version =“1.0”encoding =“UTF-8”?>

                     

在build.xml: -

       

                                       

<xmlfileset dir="." includes="testng.xml"/> 

 

1 个答案:

答案 0 :(得分:1)

<xmlfileset dir="." includes="testng.xml">

当然错误就在这一行。它在基本目录中查找已编译的类(dir =&#34;。&#34;)。将dir指向bin文件夹,其中编译的类通常或在任何地方保留了编译类。这是一个例子:

<xmlfileset dir="${basedir}/bin" includes="testng.xml">