0

ビルド ファイルを作成し、プロジェクト (Selenium および Junit) に従って構成しました。今問題は、ビルド ファイルを実行すると、最初のクラスのみが実行され、同じものが HTML レポートに保存されることです。何が間違っていて、何を編集/または置換する必要があるか教えてもらえますか??

<?xml version="1.0" encoding="UTF-8"?>
<project name="ant" default="exec" basedir=".">

    <property name="src" value="./src" />
    <property name="lib" value="./lib" />
    <property name="bin" value="./bin" />
    <property name="report" value="./report" />
    <path id="ant.classpath">
        <pathelement location="${bin}" />
        <fileset dir="${lib}">
            <include name="**/*.jar" />
            <include name="C:/Users/bhmehta/workspace/ant/lib/libs/*.jar" />
        </fileset>
    </path>

    <target name="init">
        <delete dir="${bin}" />
        <mkdir dir="${bin}" />
    </target>

      <target name="compile" depends="init" description="compile the source " >
         <!-- Compile the java code from ${src} into ${build} -->
            <javac debug="true" 
                srcdir="${src}" 
                destdir="${bin}"    
                includeantruntime="false"
                classpathref="ant.classpath"/>
                <!-- Copy files from ${src} into ${build} -->
            <copy todir="${bin}"> 
                <fileset dir="${src}">
                    <exclude name="**/*.java"/>
            </fileset>
            </copy>
      </target>

    <target name="exec" depends="compile">
        <delete dir="${report}" />
        <mkdir dir="${report}" />
        <mkdir dir="${report}/xml" />
            <junit 
                printsummary="yes" 
                haltonfailure="no"
                >
                <classpath><pathelement location="${ant.classpath}" /> </classpath>     

                <test  name="testing.demo" haltonfailure="no" todir="${report}/xml" outfile="TEST-result">
                        <formatter type="xml" />
                </test>         

                <test  name="testing.demo1" haltonfailure="no" todir="${report}/xml" outfile="TEST-result">
                                        <formatter type="xml" />
                </test>

            </junit>
            <junitreport todir="${report}">
                <fileset dir="${report}/xml">
                    <include name="TEST*.xml" />
                </fileset>
                <report format="frames" todir="${report}/html" />
            </junitreport>
    </target>
</project>

<batchtest </batchtest>タグを使用して、同様の質問に対するいくつかの解決策も試しました。しかし、次のようなエラーが表示されます

The <junit> type doesn't support ne sted text data (">").

私は本当にこれが何であるか分かりません。誰か助けてください

4

1 に答える 1

1

バッチテストにタイプミスがあります。する必要があります: <batchtest> </batchtest>。これを試して:

<junit haltonfailure="no" printsummary="yes" fork="yes">
    <classpath>
        <pathelement location="${ant.classpath}" />
    </classpath>
    <formatter type="xml"/>
    <batchtest todir="${report}">
        <fileset dir="src" includes="**/*.class" />
    </batchtest>
</junit>

テストが実行されたら、必要な方法でビルドを構成します。

于 2013-08-06T11:13:47.493 に答える