Hello, everyone I have been facing this error for ...
# help
s
Hello, everyone I have been facing this error for the past 3 days and in this test case file I didn't make any changes, I added a new file for my test cases before this test case was passed. I am getting this error:
com.github.tomakehurst.wiremock.client.VerificationException
On running the test cases of this file locally, all passed. and this is the code of the test case:
Copy code
@Test
public void test_case() {
  // Given
  long userId = 401L;
  wireMockRule.resetAll();
  <some_code>
  setUpFirebaseStub(200);
  // When
  FirebaseResponse response = firebaseService.registerFirebaseS2sEvent();
 <assertions>

  // Verify
  assertEquals(FirebaseResponse.API_SUCCESS, response);
  verifyFirebaseStubCalled(200);
  verifyUserServiceStubCalled(0, 200, userId); - getting error for this

}
can anyone help me with this?
@Tom