5

我有我的项目的单元测试。它们在 Eclipse 中运行良好,但在 ant 中失败并出现错误:

java.lang.RuntimeException: Stub!

根据本文,我已经从 EclipseIDE 自动生成了我的 ant build.xml 。

我的 build.xml 文件:

    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="main" name="MyProjectJavaTest">
    <property environment="env"/>
    <property name="junit.output.dir" value="junit"/>
    <property name="MyProject.location" value="../MyProject"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="target" value="1.6"/>
    <property name="source" value="1.6"/>

    <path id="JUnit 4.libraryclasspath">
        <pathelement location="../../../../../winapl/adt-bundle-windows-x86/eclipse/plugins/org.junit_4.8.2.v4_8_2_v20110321-1705/junit.jar"/>
        <pathelement location="../../../../../winapl/adt-bundle-windows-x86/eclipse/plugins/org.hamcrest.core_1.1.0.v20090501071000.jar"/>
    </path>

    <path id="Android 4.2.libraryclasspath">
        <pathelement location="../../../../../winapl/adt-bundle-windows-x86/sdk/platforms/android-4.2/android.jar"/>
    </path>

    <path id="Android Dependencies.libraryclasspath"/>
    <path id="Persisted container [com.android.ide.eclipse.adt.DEPENDENCIES for project [MyProject]].libraryclasspath"/>
    <path id="MyProject.classpath">
        <pathelement location="${MyProject.location}/bin/classes"/>
        <path refid="Android 4.2.libraryclasspath"/>
        <path refid="Android Dependencies.libraryclasspath"/>
        <path refid="Persisted container [com.android.ide.eclipse.adt.DEPENDENCIES for project [MyProject]].libraryclasspath"/>
    </path>

    <path id="MyProjectJavaTest.classpath">
        <pathelement location="bin"/>
        <path refid="JUnit 4.libraryclasspath"/>
        <path refid="MyProject.classpath"/>
        <pathelement location="lib/java-json.jar"/>
        <pathelement location="lib/httpcomponents/commons-codec-1.6.jar"/>
        <pathelement location="lib/httpcomponents/commons-logging-1.1.1.jar"/>
        <pathelement location="lib/httpcomponents/fluent-hc-4.2.5.jar"/>
        <pathelement location="lib/httpcomponents/httpclient-4.2.5.jar"/>
        <pathelement location="lib/httpcomponents/httpclient-cache-4.2.5.jar"/>
        <pathelement location="lib/httpcomponents/httpcore-4.2.4.jar"/>
        <pathelement location="lib/httpcomponents/httpmime-4.2.5.jar"/>
    </path>

            <target name="main" depends="MyProjectJavaTest,junitreport"/>

    <target name="MyProjectJavaTest">
        <mkdir dir="${junit.output.dir}"/>
        <junit fork="yes" printsummary="withOutAndErr">
            <formatter type="xml"/>
            <test name="my.android.MyProject.api.F1U8GetTermsAndConditions" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.JsonMarshallerTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.ParamsTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP1GetServiceDescriptionTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP2GetServiceDescriptionLogoTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP3GetServiceListTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP4GetServiceLogoTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP5GetSubscribedServiceInformationTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP6GetSubscribedServiceListTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP7SendServiceNotificationTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.TP8SubscribeToServiceTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.WMClientImplAndHMEIntegrationTest" todir="${junit.output.dir}"/>
            <test name="my.android.MyProject.api.WMClientImplTest" todir="${junit.output.dir}"/>
            <classpath refid="MyProjectJavaTest.classpath"/>
        </junit>
    </target>

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

蚂蚁版本:1.9.2

junit 版本:4.8.2

Android 开发者工具版本:v21.0.0-531062

UPD: 我收到以下错误:

java.lang.RuntimeException: Stub!
at org.apache.http.params.AbstractHttpParams.<init>(AbstractHttpParams.java:5)
at org.apache.http.params.BasicHttpParams.<init>(BasicHttpParams.java:6)
at my.android.myprojectlib.api.HttpClientProxyImpl.<init>(HttpClientProxyImpl.java:27)
at my.android.myprojectlib.api.HttpMethodExecutorImpl.<init>(HttpMethodExecutorImpl.java:28)
at my.android.myprojectlib.api.HttpMethodExecutorFactory.getHttpMethodExecutor(HttpMethodExecutorFactory.java:21)
at my.android.myprojectlib.api.WMClientImpl.<init>(WMClientImpl.java:66)
at my.android.myprojectlib.api.AbstractWMLibTest.setUp(AbstractWMLibTest.java:31)

UPD2:运行时类路径和构建类路径相同。

    <?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" path="src"/>
    <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
    <classpathentry kind="lib" path="lib/java-json.jar"/>
    <classpathentry kind="lib" path="lib/httpcomponents/commons-codec-1.6.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="lib" path="lib/httpcomponents/commons-logging-1.1.1.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="lib" path="lib/httpcomponents/fluent-hc-4.2.5.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="lib" path="lib/httpcomponents/httpclient-4.2.5.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="lib" path="lib/httpcomponents/httpclient-cache-4.2.5.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="lib" path="lib/httpcomponents/httpcore-4.2.4.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="lib" path="lib/httpcomponents/httpmime-4.2.5.jar">
        <attributes>
            <attribute name="javadoc_location" value="jar:platform:/resource/MyProjectLibJavaTest/lib/httpcomponents/javadoc.zip!/javadoc"/>
        </attributes>
    </classpathentry>
    <classpathentry combineaccessrules="false" kind="src" path="/MyProjectLib"/>
    <classpathentry kind="output" path="bin"/>
</classpath>
4

1 回答 1

2

当在类路径中的android.jar之前引用时会出现问题junit.jar

在您的build.xml中,顺序似乎正确,但是您指定了带有空格的 id:

<path id="JUnit 4.libraryclasspath">

您应该使用不带空格或其他特殊字符的 ID(不过,.-_ 也可以)。

UPD1 中的堆栈跟踪显示没有 junit,这是缺少库的另一个迹象。

于 2013-08-15T15:53:02.400 回答