public void notifyResponsibleAssigned()

in server/src/jetbrains/buildServer/vsoRooms/notificator/VSONotificator.java [152:157]


  public void notifyResponsibleAssigned(@NotNull Collection<TestName> testNames, @NotNull ResponsibilityEntry entry, @NotNull SProject project, @NotNull Set<SUser> users) {
    final Map<String, Object> root = myMessageBuilder.getTestResponsibilityAssignedMap(testNames, entry, project, users);
    root.put("responsibleUser", getUserDisplayName(entry.getResponsibleUser()));
    root.put("reporterUser", getUserDisplayName(entry.getReporterUser()));
    sendNotification(users, root, MULTIPLE_TEST_RESPONSIBILITY_ASSIGNED);
  }