
I have a method, say m1 in class, say C1. Method m1 calls a method, say m2 from another service class, say C2. So I mock m2 in junit test-cases for m1. However, m2 itself calls a third method, say m3 from a third class, say C3. When I run the test-cases for m1, they fail with the exception:
junit.framework.AssertionFailedError: null
On debugging my code, I found that reference to C3 in the mock for C2 was null. I tried mocking both C2 and C3. Yet the same problem occurred. Please help me understand how to correct this situation and run my test-cases successfully.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.