Test WorkflowExecutionResult data class.
()
| 63 | |
| 64 | |
| 65 | def test_workflow_execution_result(): |
| 66 | """Test WorkflowExecutionResult data class.""" |
| 67 | result = WorkflowExecutionResult( |
| 68 | success=True, |
| 69 | output={"data": "test"}, |
| 70 | metadata={"duration": 1000} |
| 71 | ) |
| 72 | assert result.success is True |
| 73 | assert result.output == {"data": "test"} |
| 74 | assert result.metadata == {"duration": 1000} |
| 75 | |
| 76 | |
| 77 | def test_workflow_status(): |
nothing calls this directly
no test coverage detected