本文介绍了软件需求分析的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有很多用于编写和管理需求的工具,但是有没有好的工具可以用来审查它们?

There are many tools out there for writing and managing requirements, but are there any good ones for reviewing them?

我不是在谈论 管理 ,而是用于寻找常见需求错误(例如使用否定需求或用某种方式措辞的需求)的自动化工具这使测试变得困难).
编写要求的人可以使用更多的筛选工具,然后再将其分发给一组审阅者,以筛选其文档,这样就不必因为每个人都评论相同的易于识别的问题而拖慢审阅过程.

I'm not talking about managing reviews, but automation tools that look for common requirement blunders (such as using negative requirements, or ones that are worded in a way that makes testing difficult).
More of a screening tool that someone writing requirements can use to screen their document before distributing to a group of reviewers so that the review process need not be slowed down by everyone commenting on the same easily recognizable issues.

我很好奇,以前是否有人使用过这种东西.

I'm curious if anyone's used anything like this in the past.

推荐答案

我正在开发一个控制台应用程序,该应用程序采用如下所示的xml配置文件:

I'm working on a console application that takes a xml configuration file like this:

<?xml version="1.0" encoding="utf-8"?>
<ReqCheck>
  <Categories name="Reconsider wording">
    <Keyword>may</Keyword>
    <Keyword>should</Keyword>
  </Categories>
  <Categories name="Potential logic problem" format="{0}: consider both then and else conditions.">
    <Keyword>not</Keyword>
  </Categories>
</ReqCheck>

应用程序获取MS-Word文档,并在文档中添加气球样式"注释.

The application takes a MS-Word document and adds 'balloon-style' comments to the document.

这篇关于软件需求分析的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 19:23