Use Case
クイズの記入について作成しているとしましょう。そのクイズに答えるのにたった5分しかありません。「クイズに答える」の場合Use Case
、時間制限があり、その後Use Case
は終了したことをどのように通知すればよいですか?私は単にテキストでそれを書くのですか、それとももっと正式に使うものはありますか?
私のユースケースのスケッチ:
1. The Actor tells the System he's ready to start the quiz.
2. The System presents the Actor with the first question of the Quiz and its 4 possible answers and tells him how much time he has left.
3. The Actor tells the System what is his chosen answer (a number between 1 and 4).
Repeat steps 2-3 until there are no questions left.
4. The System registers the results of the quiz.
上記のすべての操作の間に操作を入れて、残り時間が経過するたびにチェックすることもできますが、これを表示するためのより良い方法がおそらくあります。
ありがとう