LogEntry represents a single request/response log entry
| 16 | |
| 17 | // LogEntry represents a single request/response log entry |
| 18 | type LogEntry struct { |
| 19 | Timestamp string `json:"timestamp"` |
| 20 | TestCase string `json:"test_case"` |
| 21 | Iteration int `json:"iteration"` |
| 22 | Request LogRequest `json:"request"` |
| 23 | Response LogResponse `json:"response"` |
| 24 | Error string `json:"error,omitempty"` |
| 25 | } |
| 26 | |
| 27 | // LogRequest represents the request part of a log entry |
| 28 | type LogRequest struct { |
nothing calls this directly
no outgoing calls
no test coverage detected