如何验证用例是否适合我的设计?
我们设计了一个应用程序,实际上是一个框架,只考虑了一些用例/场景。现在我们想用其他几个用例来验证我们的设计?
是否有任何工具(可能是流程工具)来验证现有用例是否适合我们的设计?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您总是可以为每个新场景编写一个测试用例并从那里获取它。
如果您对工具感兴趣,Fitnesse (http://fitnesse.org/) 是一个众所周知的测试验收框架您可以使用它来记录行为并将其映射到自动化测试用例。它将允许您使用简单的句子定义测试,将它们分组到层次结构中,然后将简单的实现(Junit、TestNG 等)放在每个语句后面。
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 known 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.