Python Programming - Testing - Discussion

Discussion Forum : Testing - General Questions (Q.No. 27)
27.
What does the Python unittest.skipTest decorator indicate?
Expects a failure and marks the test as passed if it fails
Expects a failure and marks the test as failed if it passes
Skips the test unless a condition is True
Marks the current test as skipped
Answer: Option
Explanation:
The unittest.skipTest decorator is used to mark the current test as skipped in Python unittest.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.