Integration Testing
Verification of the services that have been individually tested must be performed. This critical part of microservice architecture testing relies on the proper functioning of inter-service communications. Service calls must be made with integration to external services, including error and success cases. Integration testing thus validates that the system is working together seamlessly and that the dependencies between the services are present as expected.
This is the scenario in my testing. What best approach can I follow? I have two micro services and while testing one, other does not get started on its own. I Have to start it manually. What should I do?
]]>