public boolean equals()

in harness/src/main/java/org/apache/geode/perftest/TestStep.java [46:56]


  public boolean equals(final Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    final TestStep testStep = (TestStep) o;
    return task.equals(testStep.task) &&
        roles.equals(testStep.roles);
  }