influxdb/pkg/testing
Geoffrey Wossum 093bd3f50a
feat: add CheckedClose test helper (#27122)
* feat: add CheckedClose test helper

Add CheckedClose test helper to improve readability of the following
pattern in tests.
```
defer func() {
    require.NoError(t, c.Close())
}()
```

This can now be replaced with `defer CheckedClose(t, c)()`.

* feat: add CheckedCloseOnce

Add CheckedCloseOnce test helper function to create close functions
that check for errors and only call the underlying Close method once.
2026-02-02 13:44:27 -06:00
..
assert storage service 2017-10-25 13:38:07 -07:00
helper feat: add CheckedClose test helper (#27122) 2026-02-02 13:44:27 -06:00
selfsigned feat: add client certificate support to TLSCertLoader (#27085) 2026-01-06 12:55:43 -06:00