Ant TestNG构建在Eclipse中工作,但不在终端上工作

时间:2011-07-15 15:50:48

标签: eclipse ant selenium testng

通过右键单击并选择Ant Build,我可以从Eclipse运行Ant构建。

当我尝试通过从cmd运行Ant来执行相同的构建时,我得到的结果是“构建成功”但没有构建任何内容。

Build.xml文件

<property name ="build.dir" value="${basedir}/build"/>
<property name="lib.dir" value="${basedir}/lib"/>
<property name="src.dir" value="${basedir}/src"/>
<property name="name" value="value"/>

<target name="setClassPath">
    <path id="classpath_jars">
        <path id="${basedir}/"/>
        <fileset dir="${lib.dir}" includes="*.jar"/> 
    </path>
<pathconvert pathsep=":" property="test.classpath" refid="classpath_jars"/>
</target>

<target name="loadTestNG" depends="setClassPath">
    <taskdef resource="testngtasks" classpath="${test.classpath}"/>
</target>

<target name="init">
    <mkdir dir="${build.dir}"/>
</target>

<target name="clean">
    <echo message="deleting existing build directory"/>
    <delete dir="${build.dir}"/>
</target>

<target name="compile" depends="clean, init, setClassPath, loadTestNG">
    <echo message="classpath: ${test.classpath}"/>
    <echo message="compiling..."/>
    <javac destdir="${build.dir}" srcdir="${src.dir}" classpath="${test.classpath}"           encoding="cp1252"/>
</target>

<target name="run" depends="compile">
    <testng classpath ="${test.classpath}:${build.dir}">
    <xmlfileset dir="${basedir}" includes="testng.xml"/>
    </testng>

</target>

</project>

和Testng.xml

<suite name="Regression Test Suite">

  <test name="My Test">

  <classes>

    <class name="com.RegressionTest.Sometest"/>

  </classes>

  </test>

</suite>

1 个答案:

答案 0 :(得分:1)

我确定了这个问题。我没有在项目设置中指出默认目标。 Eclipse IDE能够编译,但在终端中我只使用ANT而不指示要构建的目标。所以它成功地“建立”因为我没有告诉它要建造什么。