wrapString into quotes
(str string)
| 158 | |
| 159 | // wrapString into quotes |
| 160 | func wrapString(str string) string { |
| 161 | return fmt.Sprintf("\"%s\"", str) |
| 162 | } |
| 163 | |
| 164 | func TestComponentCalls(t *testing.T) { |
| 165 | getStateStore := func(srv *server) (statestore *grpcStateStore, cleanupf func(), err error) { |
no outgoing calls
no test coverage detected