Skip to content

Tag: mockito

Mocking a singleton with mockito

I need to test some legacy code, which uses a singleton in a a method call. The purpose of the test is to ensure that the clas sunder test makes a call to singletons method. I have seen similar questions on SO, but all the answers require other dependencies (different test frameworks) – I’m unfort…

Mockito: mocking objects and adding to ArrayList

I am testing an enterprise level application using Mockito and JUnit. Here is the code for a method of adding a product to the offline repository class in a product offline-repository-class-test I have: This relies on the following methods in classes: The method it is testing in the ProductRepositoryOffline: …

Set value to mocked object but get null

I have a simple class Foo to be mocked: In my unit test code, I mock it by using Mockito. I set name in mocked object, but when I call getter to get the name it returns null. Is it a Mockito specific issue or is it an convention that mocked object can’t set value? Why is that? What is

Mockito NotaMockException

I am facing an issue with Mockito junit testing. I am new to it and am a bit confused with the problem I am facing. Any help on this would be appreciated. Getting exception : in the below code I am aware that activity is not a mock but I am not sure for a way around this as secondMethod()