O teste de software tem vários níveis (por escopo) e tipos (por propósito). Compreendê-los — unitário, integração, end-to-end; funcional vs não-funcional — ajuda a construir uma abordagem completa de testes que cobre diferentes aspectos de qualidade.
Níveis de teste (por escopo)
UNIT → individual functions/methods in isolation (smallest, fastest, most numerous)
INTEGRATION → multiple units/components working TOGETHER (e.g. code + database, services)
END-TO-END (E2E) → the WHOLE application from the user's perspective (full flows,
through the real UI/system) — broadest, slowest
SYSTEM → the complete integrated system; ACCEPTANCE → meets business requirements
