JUnit测试编译
我想从 Windows 命令行编译 JUnit。
我有一个包含许多不同包的项目。我可以从命令行编译并运行该项目。但是,我在编译我创建的 JUnit 类时遇到困难。
我的 JUnit 类仅导入我的模型并使用这些方法来确保我的模型是正确的。因此,存在依赖性。 我的问题是,如何在不使用 ant 的情况下编译和运行我的 JUnit 类?
提前致谢
I would like to compile JUnit from windows command line.
I have a project that contains many different packages. I can compile and run this project from the command line. However, I have difficulties to compile JUnit class that I have created.
My JUnit class imports only my model and uses the methods to ensure that my model is correct. Therefore, there is a dependency.
My question is that how can I compile and run my JUnit class without using ant?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您已经成功编译了项目的其余部分,那么将 JUnit 添加到 javac 的命令行应该允许您编译依赖于 JUnit 的代码。
尝试将
-cp /full/path/to/your/junit.jar
添加到命令行。If you already manage to compile the rest of your project, then adding JUnit to
javac
's command line should allow you to compile JUnit-dependent code.Try adding
-cp /full/path/to/your/junit.jar
to the command line.您应该能够将 JUnit jar 包含在类路径中。
You should be able to include the JUnit jar in your class path.