Skip to content

Tag: mockito

Mocking a Nested Object in Junit

I have a service I am mocking like this: } the service: I need to be able to mock the “CloseableHttpResponse response = httpclient.execute(request, clientContext)”, such that the “response” object is something I create ahead of time. I am hoping some mocking when/then constructs would …

how to mock static class function with inner method in mockito?

I have a class name HibernateSessionManager which have static method I trying to mock i am using following function in @before My test case is following it passed but coverage is not touching following code here is my withSession code openSession Answer Looking at the code and assuming it compiles, I believe …

Why is the or-Matcher not working in my Mockito verify?

I would like to verify that either of the following two method calls get executed once: I have tried the following: But running the test method resulted in the following error: When I just test for a single method call as follows.. ..it runs fine and my test is always successful when logWarn() gets called wit…

Mocking Instance with deep stubs

I want to mock a lazy injection with deep stubs using: But myClassInstance.get().myMethod() results in a NullPointerException because myClassInstance.get() returns null instead of a mock. Is this an unsupported feature or am I doing something wrong? I’m using junit-jupiter 5.9.0 and mockito-junit-jupite…

Mockito expecting argument mismatch

I’m writing a Unit test with JUnit 4 and Mockito 4.6.1. I’m mocking an interface method with a specific input value. When a different value is passed, I’m expecting an argument mismatch error, but it’s not being thrown. Consider the following example: I’m mocking SomeInterface.te…