如何在已导入 Spring Web 项目的非 Web 项目中运行测试用例?

发布于 2024-09-19 06:30:18 字数 347 浏览 2 评论 0 原文

该包有一个类 - HowToUseGeocell.java - 定义了测试用例。

我已将整个项目导入到 Eclipse 中由 Maven 任务 (gae:run) 控制的更大的 Java Web 项目 (Spring 3) 中。

但我不知道如何从较大的项目内部运行这些测试用例。

有人可以指出我正确的方向吗?谢谢。

This package has a class - HowToUseGeocell.java - with test cases defined.

I have imported this entire project into a larger Java web project (Spring 3) in Eclipse controlled by a Maven task (gae:run).

But I don't know how to run these test cases from inside the larger project.

Could someone point me in the right direction please? Thanks.

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

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

发布评论

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

评论(1

故人爱我别走 2024-09-26 06:30:18

我已将整个项目导入到一个更大的 Java Web 项目中

如果这意味着“非 Web 项目”的源代码和测试已分别复制到 src/main/javasrc 中“web 项目”的 /test/java 树,然后运行:

mvn test

如果导入是关于其他内容,请解释它的含义以及项目结构是什么样的。

I have imported this entire project into a larger Java web project

If this means that the sources and tests of the "non web project" have been copied respectively in the src/main/java and src/test/java trees of the "web project", then just run:

mvn test

If the import is about something else, please explain what it means and what the project structure looks like.

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