コード例 #1
0
ファイル: Scenario.java プロジェクト: siviotti/reqplay
 public Scenario orAt(String id) {
   if (selectedSteps.isEmpty()) {
     throw new ReqPlayException("Call at() before orAt()");
   }
   selectedSteps.add(mainFlow.get(id));
   return this;
 }
コード例 #2
0
ファイル: Scenario.java プロジェクト: siviotti/reqplay
 public Scenario at(String id) {
   selectedSteps.clear();
   selectedSteps.add(mainFlow.get(id));
   return this;
 }