コード例 #1
0
  private ActionUnderTest theAgentSearchesForTheServiceProblemUsingDirectoryNumber() {
    return (interestingGivens, capturedInputAndOutputs) -> {
      supermanApp.appContainer().searchPanel().searchFor(serviceProblem.getDirectoryNumber());

      return capturedInputAndOutputs;
    };
  }
コード例 #2
0
  private ActionUnderTest theAgentSearchesForTheServiceProblemUsingAServiceId() {
    return (givens, capturedInputAndOutputs) -> {
      supermanApp.appContainer().searchPanel().searchFor(serviceProblem.serviceId());

      return capturedInputAndOutputs;
    };
  }