mouseweiwei 发表于 2008-8-13 14:42:40

ant+junit测试的结果显示问题请教

请教下 在myeclipse下 使用ant+junit 自动编译 测试完类后 有什么工具或方法能让测试结果详细的显示在 html里或者XML里吗? 目前结果是显示在 console中的

wqliberal 发表于 2008-9-8 10:27:50

试试这样可行?

<!-- =================================
          target: report            
         ================================= -->
    <target name="report" depends="test" description="--> to get the report of the test's result">
         <junitreport todir="${report.dir}">
                <fileset dir="${report.dir}" >
               <include name="TEST-*.xml"/>
             </fileset>
             <report format ="frames" todir = "${report.dir}/html"/>
         </junitreport>      
    </target>
页: [1]
查看完整版本: ant+junit测试的结果显示问题请教