(t *testing.T)
| 15 | } |
| 16 | |
| 17 | func TestTraceIDIsUsuallyUnique(t *testing.T) { |
| 18 | a := NewTraceID() |
| 19 | b := NewTraceID() |
| 20 | if a == b { |
| 21 | t.Fatalf("expected different trace ids, both were %q", a) |
| 22 | } |
| 23 | } |
nothing calls this directly
no test coverage detected