Testni ogrodja so orodja, ki zagotavljajo strukturo in pripomočke za pisanje in izvajanje testov — organizacija testov, asercije, izvajanje, poročanje in še več. Vsak jezik ima priljubljena ogrodja (Jest, JUnit, pytest itd.). Omogočajo testiranje praktično in standardizirano.
Kaj nudijo testna ogrodja
✓ TEST STRUCTURE — define tests and group them (test/it, describe/suite)
✓ ASSERTIONS — check expected outcomes (expect, assert) with helpful matchers
✓ TEST RUNNER — discover, run all tests, and report pass/fail results
✓ SETUP/TEARDOWN — run code before/after tests (beforeEach, afterEach) for shared setup
✓ MOCKING — create test doubles (mocks, stubs, spies) for dependencies
✓ REPORTING — clear output, failure details, coverage integration
