(key string, value string)
| 973 | } |
| 974 | |
| 975 | func (m *mockSpan) WithSpanString(key string, value string) *mockSpan { |
| 976 | m.attributes[NewScopedAttribute(AttributeScopeSpan, false, key)] = NewStaticString(value) |
| 977 | return m |
| 978 | } |
| 979 | |
| 980 | func (m *mockSpan) WithSpanInt(key string, value int) *mockSpan { |
| 981 | m.attributes[NewScopedAttribute(AttributeScopeSpan, false, key)] = NewStaticInt(value) |
no test coverage detected