0
0
Testing Fundamentalstesting~5 mins

Integration testing in Testing Fundamentals - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is integration testing?
Integration testing checks if different parts of a program work well together, like testing if puzzle pieces fit.
Click to reveal answer
beginner
Why do we do integration testing after unit testing?
Because unit testing checks parts alone, and integration testing checks if those parts work together correctly.
Click to reveal answer
intermediate
Name one common approach to integration testing.
One common approach is bottom-up testing, where testing starts from the smallest parts and moves up.
Click to reveal answer
intermediate
What is a stub in integration testing?
A stub is a simple fake part that replaces a missing module to help test other parts.
Click to reveal answer
beginner
How does integration testing help catch bugs?
It finds problems in how parts connect, like wrong data passed or timing issues, which unit tests might miss.
Click to reveal answer
What does integration testing focus on?
ATesting individual parts separately
BTesting performance under load
CTesting the user interface only
DTesting how parts work together
Which of these is NOT a type of integration testing?
ATop-down testing
BBottom-up testing
CUnit testing
DBig bang testing
What is a stub used for in integration testing?
ATo measure performance
BTo replace a missing module
CTo test the user interface
DTo write test cases
When is integration testing usually performed?
AAfter unit testing
BBefore unit testing
CAfter system testing
DBefore requirements gathering
Which problem is integration testing most likely to find?
AIncorrect data exchange between modules
BSyntax errors in code
CUser interface color issues
DHardware failures
Explain in your own words what integration testing is and why it is important.
Think about how parts of a machine need to work together smoothly.
You got /3 concepts.
    Describe two common approaches to integration testing and when you might use them.
    Consider whether you start testing from small parts or big parts first.
    You got /3 concepts.