Test automation

Shortening the feedback loop and increasing the quality of code.

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.

Why use it?

  • It increases the code quality.
  • It shortens feedback loops.
  • It tells if your change broke some previously working code.

How to do it?

Further Information

0%