pub fn create_test_workflow_batch(
count: usize,
nodes_per_workflow: usize,
) -> Vec<Workflow>Expand description
Create a batch of test workflows with different configurations
This creates a collection of workflows for testing batch operations.
§Arguments
count- Number of workflows to createnodes_per_workflow- Number of nodes in each workflow
§Example
use oxify_model::test_utils::create_test_workflow_batch;
let workflows = create_test_workflow_batch(3, 5);
assert_eq!(workflows.len(), 3);
assert_eq!(workflows[0].nodes.len(), 5);