DSL definitions for comprehensive WebSocket testing
()
| 154 | // DSL definitions for comprehensive WebSocket testing |
| 155 | |
| 156 | func serverStreamingPrimitiveDSL() { |
| 157 | Service("TestService", func() { |
| 158 | Method("StreamPrimitive", func() { |
| 159 | StreamingResult(String) |
| 160 | HTTP(func() { |
| 161 | GET("/stream/primitive") |
| 162 | }) |
| 163 | }) |
| 164 | }) |
| 165 | } |
| 166 | |
| 167 | func serverStreamingArrayDSL() { |
| 168 | Service("TestService", func() { |
nothing calls this directly
no test coverage detected