Class LoadScenarioOrchestrator.CheckResult

java.lang.Object
org.mockserver.mock.action.http.LoadScenarioOrchestrator.CheckResult
Enclosing class:
LoadScenarioOrchestrator

public static final class LoadScenarioOrchestrator.CheckResult extends Object
One per-distinct-check aggregate result, surfaced in the status DTO and end-of-run report so a client/dashboard/CI can see how many times each per-step LoadCheck passed and failed.
  • Field Details

    • step

      public final String step
      The step label the check ran on (step name or index).
    • source

      public final String source
      The LoadCheck.Source name (e.g. STATUS).
    • detail

      public final String detail
      The header name (HEADER) or JSONPath (BODY_JSONPATH), or empty for STATUS.
    • comparator

      public final String comparator
      The LoadCheck.Comparator name (e.g. EQUALS).
    • value

      public final String value
      The expected comparand value.
    • passed

      public final long passed
      Number of times this check passed.
    • failed

      public final long failed
      Number of times this check failed.
  • Constructor Details