Software-Testing hat mehrere Ebenen (nach Umfang) und Arten (nach Zweck). Das Verständnis von Unit-, Integrations- und End-to-End-Tests sowie funktionalen versus nicht-funktionalen Tests hilft, einen vollständigen Testansatz zu entwickeln, der verschiedene Aspekte der Qualität abdeckt.
Testebenen (nach Umfang)
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
