(t *testing.T, expected, actual interface{})
| 662 | } |
| 663 | |
| 664 | func assertEqual(t *testing.T, expected, actual interface{}) { |
| 665 | t.Helper() |
| 666 | if expected != actual { |
| 667 | t.Fatalf("expected %v, got %v", expected, actual) |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | func assertAttributeContains(t *testing.T, attrs []attribute.KeyValue, attr attribute.KeyValue) { |
| 672 | t.Helper() |
no outgoing calls
no test coverage detected