Bird
0
0

You have a test case for an input range 100 to 200 but the test inputs are: 100, 150, 200. What is the error in this test case?

medium📝 Debug Q6 of 15
Testing Fundamentals - Functional Testing Techniques
You have a test case for an input range 100 to 200 but the test inputs are: 100, 150, 200. What is the error in this test case?
AIt includes invalid values
BIt tests too many values
CIt misses testing values just outside the boundaries
DIt tests only invalid inputs
Step-by-Step Solution
Solution:
  1. Step 1: Understand boundary value analysis requirements

    BVA requires testing boundaries and values just outside boundaries to catch edge errors.
  2. Step 2: Analyze given test inputs

    Inputs 100, 150, 200 test boundaries and middle but miss values 99 and 201 just outside boundaries.
  3. Final Answer:

    It misses testing values just outside the boundaries -> Option C
  4. Quick Check:

    Missing outside boundary values = It misses testing values just outside the boundaries [OK]
Quick Trick: Always test just outside boundaries too [OK]
Common Mistakes:
  • Ignoring values just outside boundaries
  • Assuming boundary values alone are enough
  • Testing unrelated invalid inputs

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes