executeSSE handles Server-Sent Events scenarios
(_ context.Context, t *testing.T, _ Scenario)
| 200 | |
| 201 | // executeSSE handles Server-Sent Events scenarios |
| 202 | func (e *executor) executeSSE(_ context.Context, t *testing.T, _ Scenario) { |
| 203 | t.Helper() |
| 204 | |
| 205 | // SSE implementation would go here |
| 206 | // For now, just a placeholder |
| 207 | t.Skip("SSE transport not yet implemented") |
| 208 | } |
| 209 | |
| 210 | // executeStreaming handles streaming scenarios with sequences |
| 211 | func (e *executor) executeStreaming(t *testing.T, scenario Scenario) { |