views:

20

answers:

1

We have designed an application, actually a framework, keeping few use-cases/scenarios in-mind. Now we want to verify our design with few other use cases?

Are there any tools - probably process tools - to verify if the use cases out there fits into our design?

+1  A: 

I guess you can always write a testcase for each new scenario and take it from there.

If you are interested in tools, Fitnesse (http://fitnesse.org/) is a well know test acceptance framework which you can use to document behavior and map it to automated test cases. It will allow you to define tests using simple sentences, group them in hierarchies, and then put simple implementations (Junit, TestNG, etc.) behind each statement.

Sebastian