I have a class which I would like to test with a public method that calls private one. I'd like to assume that private method works correctly. For example, I'd like something like doReturn....when.... I found that there is possible solution using PowerMock, but this solution doesn't work for me.
How It can be done? Did anybody have this problem?
| |||||
feedback
|
|
I don't see a problem here. With the following code using the Mockito API, I managed to do just that :
And here's the JUnit test :
| |||
feedback
|
|
A generic solution that will work with any testing framework is to create your own mock.
This doesn't use any framework so its not as elegant but it will always work even without PowerMock. Alternatively, you can use Mockito to do steps #2 & #3 for you, if you've done step one already. To mock a private method directly, you will need PowerMock as shown in the other answer. | ||||
|
feedback
|