Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mockito / Powermockito mock private void method

I need to mock a private void method which takes no arguments using mockito and powermock.

The method belongs to a instance which is a spy.

I am aware the fact I need to do this suggests bad code but I am working with an old project converting the unit tests from one testing framework to another.

If anyone has any suggestions it would be much appreciated.

Thank You!

So far I have tried this:

PowerMockito.doNothing().when(Whitebox.invokeMethod(spy,"method",null));

But I get this error:

No method found with name 'method' with parameter types: [ <none> ] 
like image 419
Mat Avatar asked Jul 29 '14 16:07

Mat


People also ask

How do you mock a private void method?

For Mockito, there is no direct support to mock private and static methods. In order to test private methods, you will need to refactor the code to change the access to protected (or package) and you will have to avoid static/final methods.

Can we mock private methods using Powermockito?

PowerMock integrates with mocking frameworks like EasyMock and Mockito and is meant to add additional functionality to these – such as mocking private methods, final classes, and final methods, etc. It does that by relying on bytecode manipulation and an entirely separate classloader.

How do you reflect a private method using mock?

If we want to access Private Field and method using Reflection we just need to call setAccessible(true) on the field or method object which you want to access. Class. getDeclaredField(String fieldName) or Class. getDeclaredFields() can be used to get private fields.

How do you mock method which returns void?

Mockito provides following methods that can be used to mock void methods. doAnswer() : We can use this to perform some operations when a mocked object method is called that is returning void. doThrow() : We can use doThrow() when we want to stub a void method that throws exception.


1 Answers

I haven't tried Whitebox (which comes with Powermock), but try something like:

@RunWith(PowerMockRunner.class)
@PrepareForTest(MyClass.class)
public class MyClassTest {
    private MyClass myClass;

    @Before
    public void setup() {
        myClass = PowerMockito.spy(new MyClass());
        PowerMockito.doNothing().when(myClass, "myPrivateMethod");
    }
    //Tests..
}

.. as far as I can remember..

like image 192
Tobb Avatar answered Oct 16 '22 04:10

Tobb