编写junit测试的好习惯

发布于 2024-09-17 01:16:06 字数 130 浏览 5 评论 0原文

我不太熟悉 junit4,那么编写一个 gui 测试来验证 GUI 中的某些操作的良好做法是什么。 在Methode.java中编写methode,然后在TestMethode.java中编写testmethdoe? 你能给我举个例子吗? 谢谢,

i'm not really familiar with junit4, so what are the good practice to write a gui test that verify some actions in the GUI.
write the methode in Methode.java then write the testmethdoe in TestMethode.java?
could you give me an example please ?
thanks,

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

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

发布评论

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

评论(1

心作怪 2024-09-24 01:16:06

对于单元测试,可能的解决方案之一是使用不同的源文件夹。

所以你有一个名为 src/java 或类似的文件夹用于你的代码,还有一个文件夹 src/tests 用于你的单元测试。

接下来,两个文件夹可以具有相同的包结构,并且测试文件夹中的类名称可以是原始类名称 + Test

接下来,测试类可以包含与原始类相同的方法,其名称再次附加单词 Test

这为您的单元测试提供了良好的结构。请注意,这不是唯一可能的解决方案,但只是我喜欢使用的一个......

For unit tests, one of the possible solutions is to have a different source folder.

so you have a folder called src/java or something like that for your code, and a folder src/tests for your unit tests.

Next, both of your folders can have the same package structure, and the class names in your test folder can be the original class name + Test

Next, a test class could contain the same methods as the original class, for which the names are again appended with the word Test

This gives you a good structure for your unit tests. Be aware that this is not the only possible solution, but just one I like to use...

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