Search code examples
scrumuser-acceptance-testingscrumboard

How to make exactly Acceptance Criteria and Acceptance Testing in Spring MVC project?


How would you go about introducing acceptance tests into a team using the Spring MVC framework? What tools are available for this purpose?How would I make Acceptance criteria as a QA? Thanks!


Solution

  • There are several Acceptance Test Automation Framework available. They allow you to easily define your Acceptance Tests (which is unambiguous and Verifiable).

    They can be easily/automatically triggered to run all your defined Acceptance Tests.

    These easy to implement framworks also support you to pursue Acceptance Test Driven Development (ATDD); thus checking on QA.

    If acceptance tests are very well defined and exhaustive they can easily be used to check regressions with very little effort.

    Few of such Acceptance Test Automation Framework are as follows :

    1. FitNesse
    2. Robot Framework
    3. Selenium can also be used for acceptance test.
    4. StoryTeller

    There are many others which lets you achieve the goal. :)