Why is the mock object being null in testing an Abstract Class’s Concrete Method
I have an Abstract class CustomerHelper with a concrete method saveCustomerWithoutPF(). I have mocked an object that it calls (from a private method) and returned a value when (using Mockito.when) that method is called but its saying that mock object is being null.