(recordQuery bool)
| 1180 | } |
| 1181 | |
| 1182 | func NewFakeInstrumentation(recordQuery bool) *FakeInstrumentation { |
| 1183 | return &FakeInstrumentation{ |
| 1184 | PersistQuery: recordQuery, |
| 1185 | PathParts: make(map[string]string), |
| 1186 | } |
| 1187 | } |
| 1188 | |
| 1189 | func (c *FakeInstrumentation) Start(ctx context.Context, name string) context.Context { |
| 1190 | c.Name = name |
no outgoing calls
no test coverage detected