What is mocking/stubbing in the context of integration testing?
Mocking/stubbing replaces external dependencies like web services or message queues
with controlled test doubles to isolate the parts under test and control external behavior
without invoking real services.