0
0
Testing Fundamentalstesting~10 mins

Entry and exit criteria in Testing Fundamentals - Interactive Code Practice

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

Complete the code to define entry criteria as a condition to start testing.

Testing Fundamentals
entry_criteria = "Testing can begin only when [1] are met."
Drag options to blanks, or click blank then click option'
Aall prerequisites
Btest cases
Ctest reports
Dbugs
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing entry criteria with test cases or bugs.
2fill in blank
medium

Complete the code to define exit criteria as a condition to stop testing.

Testing Fundamentals
exit_criteria = "Testing can be stopped when [1] are achieved."
Drag options to blanks, or click blank then click option'
Atest environments
Btest cases
Call test objectives
Dtest plans
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing exit criteria with test cases or environment setup.
3fill in blank
hard

Fix the error in the statement about entry criteria.

Testing Fundamentals
entry_criteria = "Testing starts after [1] are ready."
Drag options to blanks, or click blank then click option'
Atest environments
Btest cases
Ctest plans
Dall bugs
Attempts:
3 left
💡 Hint
Common Mistakes
Assuming all bugs must be fixed before testing starts.
4fill in blank
hard

Fill both blanks to complete the exit criteria conditions.

Testing Fundamentals
exit_criteria = "Testing ends when [1] are executed and [2] are resolved."
Drag options to blanks, or click blank then click option'
Aall test cases
Bcritical bugs
Cminor bugs
Dtest plans
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing minor bugs with critical bugs in exit criteria.
5fill in blank
hard

Fill all three blanks to complete the entry and exit criteria statements.

Testing Fundamentals
entry_criteria = "[1] are ready and [2] is set up." exit_criteria = "[3] are completed."
Drag options to blanks, or click blank then click option'
ATest environment
BTest data
CTest execution
DTest cases
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up test execution with entry criteria.