Integration testing is a phase in software testing where individual software modules (or components) are combined and tested in a group. Integration testing happens after unit testing, and before system testing.

learn more… | top users | synonyms

1
vote
1answer
39 views

Rails integration testing: Should we use strings or named routes in http requests?

When integration testing Rails applications HTTP request helpers can take a string or a named route as the first argument. I find myself writing: ...
2
votes
1answer
630 views

Integration test for database access

This integration test involves database access and hence opening and closing a database connection. Does it look correct? I am concerned about ensuring the the database connection is closed should the ...
5
votes
2answers
1k views

Generic wrapper for a task-based API

The idea was to provide a clear-looking, type-inferring framework to test a task-based API (it's for integration testing, and test methods should be as clear as possible). All the tested API ...