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?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||||
|
|
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 :
|
|||
|
|
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. |
||||
|
|
|
Actual RunTimeException it is throwing is not from the public method, it is because of the IllegalArgumentException. I think still your test is not behaving as expected. Cheers, Guru |
|||
|
|