如何在 Servlet 和 JSP 中使用 JUnit?

发布于 2024-08-05 17:50:03 字数 147 浏览 5 评论 0原文

我正在编写一个 Web 应用程序,应该使用 JUnit 框架进行测试。所以请建议我如何在 Jsp 和 servlet 中使用 JUnit 以及如何使用 Ant 生成测试用例报告?提前致谢

为什么我们不能使用 Cactus?我听说过这个,它与其他测试用例有什么不同?

I am writing a web application which should be tested with JUnit framework. So please suggest me how we can use JUnit in Jsp and servlet and also how to generate test case reports using Ant?? Thanks in advance

Why cant we use Cactus? I have heard about that and what it differs from other test cases?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

家住魔仙堡 2024-08-12 17:50:03

对于servlet,我使用 spring框架模拟类 - 有模拟请求、响应、servlet上下文等。您不需要在应用程序中使用spring框架来使用它们。

关于你的第二个问题,我认为你正在寻找的是 junitreport Ant任务。这是一个示例(取自此处 ):

<target name="junit" description="Runs the unit tests" depends="jar">
    <delete dir="${junit.out.dir.xml}"/>
    <mkdir  dir="${junit.out.dir.xml}"/>
    <junit printsummary="yes" haltonfailure="no">
        <classpath refid="classpath.test"/>
        <formatter type="xml"/>
        <batchtest fork="yes" todir="${junit.out.dir.xml}">
            <fileset dir="${src.dir}" includes="**/*Test.java"/>
        </batchtest>
    </junit>
</target>

<target name="junitreport" description="Create a report for the rest result">
    <mkdir dir="${junit.out.dir.html}"/>
    <junitreport todir="${junit.out.dir.html}">
        <fileset dir="${junit.out.dir.xml}">
            <include name="*.xml"/>
        </fileset>
        <report format="frames" todir="${junit.out.dir.html}"/>
    </junitreport>
</target>

For servlets I use the spring framework mock classes - there are mock request, response, servlet context, etc. You do not need to use the spring framework in your application to use them.

Regarding your second question, i think what you are looking for is the junitreport Ant task. Here is a sample (taken from here):

<target name="junit" description="Runs the unit tests" depends="jar">
    <delete dir="${junit.out.dir.xml}"/>
    <mkdir  dir="${junit.out.dir.xml}"/>
    <junit printsummary="yes" haltonfailure="no">
        <classpath refid="classpath.test"/>
        <formatter type="xml"/>
        <batchtest fork="yes" todir="${junit.out.dir.xml}">
            <fileset dir="${src.dir}" includes="**/*Test.java"/>
        </batchtest>
    </junit>
</target>

<target name="junitreport" description="Create a report for the rest result">
    <mkdir dir="${junit.out.dir.html}"/>
    <junitreport todir="${junit.out.dir.html}">
        <fileset dir="${junit.out.dir.xml}">
            <include name="*.xml"/>
        </fileset>
        <report format="frames" todir="${junit.out.dir.html}"/>
    </junitreport>
</target>
(り薆情海 2024-08-12 17:50:03

是的,cactus是一个不错的选择。它主要用于集成测试,也可以满足单元测试。有关详细信息,您只需尝试此网站 http://jakarta.apache.org/cactus

Yes, cactus is an good option.. it is mainly for Integration testing and can also satisfy the Unit testing. For details u just try this site http://jakarta.apache.org/cactus

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文