Bird
Raised Fist0

A test case has the step: Enter email as 'userexample.com'. The test fails because the system accepts this input. What is the likely error?

medium📝 Debug Q6 of Q15
Testing Fundamentals - Test Documentation
A test case has the step: Enter email as 'userexample.com'. The test fails because the system accepts this input. What is the likely error?
ATest case step is incorrect.
BExpected result is wrong.
CTest data is valid.
DValidation for email format is missing.
Step-by-Step Solution
Solution:
  1. Step 1: Analyze the input and failure to identify cause

    Email without '@' is invalid but system accepted it. Missing validation for email format allows invalid input.
  2. Final Answer:

    Validation for email format is missing. -> Option D
  3. Quick Check:

    Invalid input accepted = Missing validation [OK]
Quick Trick: Invalid inputs must be blocked by validation [OK]
Common Mistakes:
MISTAKES
  • Blaming test case step instead of system
  • Assuming test data is valid
  • Ignoring validation rules

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes