December 2023
Intermediate to advanced
200 pages
5h 20m
English
This chapter covers
Microservice architecture encourages you to write minimal services that can be easily tested as a unit. For example, while testing the Order service, the only context you need to focus on is Order. To test the Order service, you have two high-level alternatives: manual testing and automated testing.
With manual testing, you must run actual and dependent services to test the entire flow. This can be a time-consuming operation compared to testing backed ...