Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mocking a method that uses external classes, mockito

I'm new to mockito and just trying to understand how it works.

I have a method that I want to test. The method instantiates multiple classes to use its methods.

e.g.

methodToTest{
 class1 c1 = new class1();
 class2 c2 = new class2();
 class3 c4 = new class3();

c1.method1;
c2.method2;
c3.method3;

more logic 

...

return result
}

I understand that in order to test this method I need to mock the classes. Doe this mean I need to decouple it and pass in each class as a parameter to the method? I want to avoid having a method that uses a large list of parameters that will only really be necessary when mocking.

Perhaps I've missed something.

Thanks for your insights.

like image 642
mogoli Avatar asked May 26 '26 17:05

mogoli


1 Answers

My standard solution here is to add a method which instantiates the class:

public ClassToTest {
    methodToTest{
        class1 c1 = newClass1();
        ...
    }

    class1 newClass1() {
        return new Class1();
    }
}

The new method is protected or package private and I simply override it in my unit test to inject the mocks:

@Test
public void testFoo() {
    ClassToTest inst = new ClassToTest() {
        class1 newClass1() {
            return new Class1(); // <--- you can mock here
        }            
    };
}
like image 97
Aaron Digulla Avatar answered May 28 '26 06:05

Aaron Digulla



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!