Integration Testing

An integration test is an automated script designed to verify whether a section of the codebase (a 'unit') behaves as intended using external dependencies. Often these are used as 'end to end' tests (ie: testing an endpoint) but are not limited to that scope of testing. Think of it as 'how does my code integrate with other resources?'

Last updated