Testowanie oprogramowania ma kilka poziomów (ze względu na zakres) i typów (ze względu na cel). Zrozumienie ich — testów jednostkowych, integracyjnych, end-to-end; funkcjonalnych vs niefunkcjonalnych — pomaga budować kompletne podejście do testowania, obejmujące różne aspekty jakości.
Poziomy testowania (ze względu na zakres)
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
