(key string, value bool)
| 988 | } |
| 989 | |
| 990 | func (m *mockSpan) WithAttrBool(key string, value bool) *mockSpan { |
| 991 | m.attributes[NewAttribute(key)] = NewStaticBool(value) |
| 992 | return m |
| 993 | } |
| 994 | |
| 995 | func (m *mockSpan) AttributeFor(a Attribute) (Static, bool) { |
| 996 | s, ok := m.attributes[a] |
no test coverage detected