Skip to content

Instantly share code, notes, and snippets.

@kh0ma
Created February 8, 2022 19:08
Show Gist options
  • Save kh0ma/de38dbd7e61e6cea20ed088e7a91fdaf to your computer and use it in GitHub Desktop.
Save kh0ma/de38dbd7e61e6cea20ed088e7a91fdaf to your computer and use it in GitHub Desktop.
How to look at all mockito bean interactions
@MockBean
protected TelemetryClient telemetryClient;
@AfterEach
public void showInteractions() {
System.out.println(mockingDetails(telemetryClient).getInvocations());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment