编写junit测试的好习惯
我不太熟悉 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于单元测试,可能的解决方案之一是使用不同的源文件夹。
所以你有一个名为 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...