JUNIT testing void methods

后端 未结 7 1083
遇见更好的自我
遇见更好的自我 2020-11-27 02:41

I have a java class full of void methods, and I want to make some unit test to get maximal code coverage.

For example I have this method :

protected          


        
7条回答
  •  佛祖请我去吃肉
    2020-11-27 03:22

    I think you should avoid writing side-effecting method. Return true or false from your method and you can check these methods in unit tests.

提交回复
热议问题