Multiple choice technology testing

If an expected result is not specified then:

  1. We cannot run the test

  2. It may be difficult to repeat the test

  3. It may be difficult to determine if the test has passed or failed

  4. We cannot automate the user inputs

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Without a specified expected result, it's difficult to determine if a test passed or failed. The test outcome is judged against expectations, so missing expected results makes the test inconclusive.

AI explanation

Without a documented expected result, a tester has no objective basis for deciding whether the actual output matches what was intended, so pass/fail determination becomes difficult or subjective. The test can still technically be run and even automated at the input level — what's missing is the ability to judge the outcome, not the ability to execute the test.