It isolates dependencies using mocks. Frame the concept in practical terms so you can explain it during interview discussion.
Mockito is a framework that allows you to create mock objects for testing Java components in isolation. This is particularly useful for testing classes that depend on external services. For example, in an e-commerce application, you can use Mockito to mock the payment gateway service, allowing you to test your order processing logic without needing a real payment provider.