0
0
Testing Fundamentalstesting~10 mins

Why different testing levels catch different bugs in Testing Fundamentals - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to define the testing level that checks individual functions.

Testing Fundamentals
def test_level():
    return "[1]"
Drag options to blanks, or click blank then click option'
AUnit Testing
BSystem Testing
CIntegration Testing
DAcceptance Testing
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing unit testing with system testing.
2fill in blank
medium

Complete the code to name the testing level that checks combined modules working together.

Testing Fundamentals
def test_level():
    return "[1]"
Drag options to blanks, or click blank then click option'
AAcceptance Testing
BIntegration Testing
CSystem Testing
DUnit Testing
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing integration testing with system testing.
3fill in blank
hard

Fix the error in the code to return the testing level that validates the whole system.

Testing Fundamentals
def test_level():
    return "[1]"
Drag options to blanks, or click blank then click option'
AIntegration Testing
BUnit Testing
CSystem Testing
DAcceptance Testing
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing acceptance testing instead of system testing.
4fill in blank
hard

Fill both blanks to complete the sentence about testing levels and bugs caught.

Testing Fundamentals
Unit testing catches [1] bugs, while system testing catches [2] bugs.
Drag options to blanks, or click blank then click option'
Asmall, detailed
Blarge, system-wide
Cinterface
Dperformance
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the types of bugs each testing level finds.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension describing testing levels and bug types.

Testing Fundamentals
bug_types = {
    "Unit Testing": "[1]",
    "Integration Testing": "[2]",
    "System Testing": "[3]"
}
Drag options to blanks, or click blank then click option'
Acode errors
Binterface errors
Csystem errors
Duser acceptance
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing acceptance testing with system testing bug types.