public TestStep()

in harness/src/main/java/org/apache/geode/perftest/TestStep.java [29:35]


  public TestStep(Task task, String[] roles) {
    if (roles == null || roles.length == 0) {
      throw new IllegalStateException("Task " + task + " must be assigned to at least one role");
    }
    this.task = task;
    this.roles = new HashSet<>(Arrays.asList(roles));
  }