How detailed should a customer acceptance test be?

后端 未结 3 1585
野的像风
野的像风 2021-02-13 01:26

Here is a test description, testing the \"Create New Widget\" use-case.

  • Confirm that you can enter a new widget into the system.

Here is anoth

3条回答
  •  时光取名叫无心
    2021-02-13 01:53

    The user acceptance test cases should be detailed and simple but not as detailed as your third example. Acceptance testing is about making sure the customer gets what they agreed to. If you simply say, "click this then click that, etc, etc..." that is more like a functional test. You are not eliciting users to verify that functionality meets the test case laid out in the acceptance test. You are only asking them to click through tests that you could have simply automated.

    User acceptance tests should be more along the lines of "create widget, verify that it appears, delete widget, etc." This will also encourage users to seek out individual features and (as a side effect) flush out any usability problems you may have overlooked.

提交回复
热议问题