Hi @arvindpandey From what I can see, the issue is that the restAPIConfigurations service is not being injected into your servlet instance in the test class.In your test class, you have mocked the RestAPIConfigurations service, but you haven't injected it into the HubSourceServlet instance.Here's ho...