Test SimStudioError creation.
()
| 55 | |
| 56 | |
| 57 | def test_simstudio_error(): |
| 58 | """Test SimStudioError creation.""" |
| 59 | error = SimStudioError("Test error", "TEST_CODE", 400) |
| 60 | assert str(error) == "Test error" |
| 61 | assert error.code == "TEST_CODE" |
| 62 | assert error.status == 400 |
| 63 | |
| 64 | |
| 65 | def test_workflow_execution_result(): |
nothing calls this directly
no test coverage detected