Return

Pattern: Automated Testing

Shift responsibility for testing from humans (manual) to automated testing frameworks so the quality of the released products is consistent and continuously improving, allowing developers to deliver faster while spending more of their time improving features to meet customer needs

Automated Testing

CI and CD are in progress. Legacy code is being refactored to MS, and the team is aiming to deliver changes a few times a day.

In This Context

Humans are too slow and inconsistent to be a blocking factor in the pipeline for deployment to production.Any human handover or task performed by a human will significantly reduce the number of changes a team can deliver and increase the time required to deliver them.

Therefore

Automate all the testing required to take any product change to production.Most functionality should be tested using fast and local unit tests, integration tests can ensure that components are working well together, and only a small portion of the test coverage needs to be on the system UI levels. All long-running and manual tests should be gradually refactored and automated, and they should not block consistent flow of changes to production.

Consequently

The team can trust that the delivery process will catch most issues and that changes will flow to production quickly.