I have my source code as:
response = getRequestService().retrieveResponse(baseRequest);
data = response.getStoredData(); ---> (1)
And I have written my Test Case as :
RequestService requestService = EasyMock.createNiceMock(RequestService .class);
BaseRequest baseRequest = new BaseRequest();
BaseResponse response = new BaseResponse();
expect(requestService .retrieveResponse(EasyMock.eq(baseRequest))).andReturn(response)
replay(requestService );
However, when I run my test I am always getting a NullPointerException at line 1.
Can somebody please help me on how to resolve this?
Thanks.