| 940 | var _ Span = (*mockSpan)(nil) |
| 941 | |
| 942 | type mockSpan struct { |
| 943 | id []byte |
| 944 | startTimeUnixNanos uint64 |
| 945 | durationNanos uint64 |
| 946 | attributes map[Attribute]Static |
| 947 | |
| 948 | parentID, left, right int |
| 949 | } |
| 950 | |
| 951 | func newMockSpan(id []byte) *mockSpan { |
| 952 | return &mockSpan{ |
nothing calls this directly
no outgoing calls
no test coverage detected