Introduction to Automated Testing
Explore automated testing concepts including unit and integration tests, and learn how to integrate testing processes with Git hooks to maintain code quality during development. Understand the role of virtual machines and containers to ensure consistency between development and production environments.
We'll cover the following...
We'll cover the following...
In the previous chapters, we’ve looked at both interactive and automated testing. In general, both play an important role in developing code confidence and, therefore, development speed.
-
Interactive testing helps us become confident in our new code.
-
Automated testing helps us maintain confidence in our old code. When changes are made to one ...