Automatizacija testiranja — pokretanje testova automatski (u CI/CD) umjesto ručno — neophodna je za brzo, pouzdano, često testiranje u većem opsegu. Učinkovito gradenje uključuje izbor što automatizirati, strukturiranje održavajuće automatizacije i integraciju u proces razvoja.
Što automatizirati (i što ne)
AUTOMATE:
✓ REGRESSION tests (run constantly to catch breakage) — the biggest win
✓ Repetitive, stable, frequently-run tests; unit/integration tests; critical flows
DON'T necessarily automate:
✗ Exploratory testing, usability, one-off checks, highly unstable/changing features
→ manual testing still has a place (exploratory, UX, edge judgment)
→ Automate what's repetitive and valuable to run often; not everything.
