(t testing.TB, a, b *T)
| 3326 | func (*fakeTelemetryReporter) Close() {} |
| 3327 | |
| 3328 | func requireEqualOrBothNil[T any](t testing.TB, a, b *T) { |
| 3329 | t.Helper() |
| 3330 | if a != nil && b != nil { |
| 3331 | require.Equal(t, *a, *b) |
| 3332 | return |
| 3333 | } |
| 3334 | require.Equal(t, a, b) |
| 3335 | } |
| 3336 | |
| 3337 | func TestAgentConnectionInfo(t *testing.T) { |
| 3338 | t.Parallel() |
no test coverage detected