Integration testing neverifikasi manawa akèh komponen utawa unit bisa ana bebarengan kanthi bener — ngetèst interaksi lan titik integrasi (kaya kode karo database, layanan sing saling memanggil, utawa modul sing digabungake). Iku nyedhak masalah sing unit test (sing ngisolasi unit) keliru.
Apa sing diverifikasi integration testing
Integration tests verify COMPONENTS WORKING TOGETHER (not in isolation):
→ code + DATABASE (does the data layer actually work with a real DB?)
→ service A calling service B / an external API
→ multiple modules/units combined; the integration POINTS between them
→ catches issues in how parts INTERACT — which unit tests (isolated) can't catch.
