InterviewSolution
| 1. |
What is Acceptance testing in Agile? |
|
Answer» User acceptance testing (UAT) is the last phase of development in which software USERS test the software to ensure that it can handle required tasks in real-world scenarios. It is also identified as beta testing, application testing, or end-user testing. User Acceptance Testing (UAT) in Agile practices
A plan describing all aspects of the UAT is pulled up.
Test cases are designed to cover all the functional scenarios of the software in real-world usage.
Testing team made up of real-world end-users is created.
The team executes test cases, bugs and COMMENTS are logged.
The software development team fixes the listed bugs.
The testing team ACCEPTS the software application, which INDICATES that the application suffices user requirements and is equipped to be rolled out in the market. |
|