DevOps开放最佳实践库

开放实践库是一个开源的、由社区驱动的最佳实践和工具的启发知识库。

Test automation

What is it? Test automation allows teams to remove the slow and manual testing cycles related to software development. Test automation can include such things as: Static code analysis Linting Unit tests End-to-end tests Security tests These tests are typically executed by a build automation tool, for example Jenkins. Easy and quick tests should be ran right after building (compiling) your application, such as unit tests and static code analysis. Also many of these tests can be run in parallel, decreasing the overall time taken to run the tests.
0%