如何在已导入 Spring Web 项目的非 Web 项目中运行测试用例?
该包有一个类 - HowToUseGeocell.java - 定义了测试用例。
我已将整个项目导入到 Eclipse 中由 Maven 任务 (gae:run
) 控制的更大的 Java Web 项目 (Spring 3) 中。
但我不知道如何从较大的项目内部运行这些测试用例。
有人可以指出我正确的方向吗?谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这意味着“非 Web 项目”的源代码和测试已分别复制到
src/main/java
和src 中“web 项目”的 /test/java
树,然后运行:如果导入是关于其他内容,请解释它的含义以及项目结构是什么样的。
If this means that the sources and tests of the "non web project" have been copied respectively in the
src/main/java
andsrc/test/java
trees of the "web project", then just run:If the import is about something else, please explain what it means and what the project structure looks like.