JUnit测试编译

发布于 2024-08-15 13:08:58 字数 201 浏览 4 评论 0原文

我想从 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 技术交流群。

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

发布评论

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

评论(2

骄兵必败 2024-08-22 13:08:59

如果您已经成功编译了项目的其余部分,那么将 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.

画离情绘悲伤 2024-08-22 13:08:59

您应该能够将 JUnit jar 包含在类路径中。

java -cp junit-4.8.1.jar;yourfiles.jar com.your.class

You should be able to include the JUnit jar in your class path.

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