(t *testing.T, attrs []attribute.KeyValue, attr attribute.KeyValue)
| 669 | } |
| 670 | |
| 671 | func assertAttributeContains(t *testing.T, attrs []attribute.KeyValue, attr attribute.KeyValue) { |
| 672 | t.Helper() |
| 673 | for _, a := range attrs { |
| 674 | if a == attr { |
| 675 | return |
| 676 | } |
| 677 | } |
| 678 | t.Fatalf("attribute %v not found", attr) |
| 679 | } |
no outgoing calls
no test coverage detected