(t *testing.T)
| 22 | } |
| 23 | |
| 24 | func buildTestContext(t *testing.T) context.Context { |
| 25 | ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond) |
| 26 | t.Cleanup(cancel) |
| 27 | |
| 28 | return ctx |
| 29 | } |
| 30 | |
| 31 | func TestTracing(t *testing.T) { |
| 32 | olderr := os.Stderr |
no outgoing calls
no test coverage detected