()
| 401 | |
| 402 | #[tokio::test] |
| 403 | async fn test_workflow_builder() { |
| 404 | let workflow = WorkflowBuilder::new("test_workflow") |
| 405 | .description("Test workflow") |
| 406 | .build() |
| 407 | .expect("Failed to build workflow"); |
| 408 | |
| 409 | assert_eq!(workflow.name, "test_workflow"); |
| 410 | assert_eq!(workflow.description, "Test workflow"); |
| 411 | } |
| 412 | |
| 413 | #[tokio::test] |
| 414 | async fn test_workflow_with_llm() { |
nothing calls this directly
no test coverage detected