________ is a common practice in integration testing to verify interactions with external services.

  • Faking
  • Mocking
  • Stacking
  • Stubbing
Mocking is a common practice in integration testing to simulate interactions with external services for thorough testing.

In terms of extensibility and integration with existing infrastructure, what is a key advantage of SOAP over REST?

  • REST allows for flexible message formats
  • REST is more suited for integrating with existing infrastructure
  • SOAP is limited in its ability to integrate with existing systems
  • SOAP provides a standardized and rigid structure for messages
A key advantage of REST over SOAP in terms of extensibility and integration is its flexibility in message formats. RESTful web services can use various formats like JSON, XML, etc., making it easier to adapt and integrate with existing systems that may use different data representations. SOAP, on the other hand, has a standardized and rigid message structure, which may pose challenges in certain integration scenarios.