Snippets tagged “mock-construction”
1 snippet uses this tag.
- Mockito : how to verify method was called on an object created within a method?Java
To verify that a method was called on an object created within a method using Mockito, you can use the Mockito.verify() method and pass it the object that you want to verify, as well as the method that you want to verify was called.