flux-testutils/src/main/java/software/amazon/aws/clients/swf/flux/testutil/StubFluxCapacitor.java [149:166]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            throw new RuntimeException(String.format("%s execution %s should not have been started.",
                                                     workflowType.getSimpleName(), workflowId));
        }
    }

    /**
     * Returns the number of unique workflows that were executed.
     * @return The count
     */
    public int countExecutedWorkflows() {
        return executedWorkflows.size();
    }

    /**
     * Resets the executed workflow cache, useful for preventing tests from interfering with each other.
     */
    public void resetExecutionCache() {
        executedWorkflows.clear();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flux-testutils/src/main/java/software/amazon/aws/clients/swf/flux/testutil/StubRemoteWorkflowExecutor.java [93:110]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            throw new RuntimeException(String.format("%s execution %s should not have been started.",
                                                     workflowType.getSimpleName(), workflowId));
        }
    }

    /**
     * Returns the number of unique workflows that were executed.
     * @return The count
     */
    public int countExecutedWorkflows() {
        return executedWorkflows.size();
    }

    /**
     * Resets the executed workflow cache, useful for preventing tests from interfering with each other.
     */
    public void resetExecutionCache() {
        executedWorkflows.clear();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



