(t *testing.T)
| 807 | } |
| 808 | |
| 809 | func TestSetTagWithEmptySpan(t *testing.T) { |
| 810 | tracer := tracingtest.NewTracer() |
| 811 | tracing := newProxyTracing(&OpenTracingParams{ |
| 812 | Tracer: tracer, |
| 813 | }) |
| 814 | |
| 815 | // should not panic |
| 816 | tracing.setTag(nil, "test", "val") |
| 817 | } |
| 818 | |
| 819 | // TestOTelBaggagePredicateWithIncomingHeader verifies that the OTelBaggage predicate |
| 820 | // can match baggage values that arrive via the W3C baggage HTTP header. |
nothing calls this directly
no test coverage detected
searching dependent graphs…