Integration testing பல கூறுகள் அல்லது அலகுகள் சேர்ந்து சரியாக செயல்படுகின்றனவா என்பதை சரிபார்க்கிறது — தொடர்புகள் மற்றும் integration points (குறியீடு ஒரு தரவுத்தளத்துடன், சேவைகள் ஒருவருக்கொருவர் அழைக்கும் போது, அல்லது மாடியூல்கள் இணைக்கப்பட்டிருக்கும் போது போன்ற) சோதனை செய்கிறது. Unit tests (இவை அலகுகளை தனிமைப்படுத்தும்) தவறவிட்ட சிக்கல்களைப் பிடிக்கிறது.
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.
