()
| 1179 | } |
| 1180 | |
| 1181 | func newConfig() *config.Config { |
| 1182 | newCfg := *goodCfg |
| 1183 | newCfg.Users = []config.User{ |
| 1184 | { |
| 1185 | Name: defaultUsername, |
| 1186 | MaxConcurrentQueries: rand.Uint32(), |
| 1187 | }, |
| 1188 | } |
| 1189 | return &newCfg |
| 1190 | } |
| 1191 | |
| 1192 | func bbToString(t *testing.T, r io.Reader) string { |
| 1193 | response, err := io.ReadAll(r) |
no outgoing calls
no test coverage detected