(t *testing.T)
| 197 | } |
| 198 | |
| 199 | func TestClientSetRootCertificateFromStringError(t *testing.T) { |
| 200 | t.Parallel() |
| 201 | |
| 202 | client := New() |
| 203 | require.Panics(t, func() { |
| 204 | client.SetRootCertificateFromString("invalid pem data") |
| 205 | }) |
| 206 | } |
| 207 | |
| 208 | func TestClientLoggerAccessors(t *testing.T) { |
| 209 | t.Parallel() |
nothing calls this directly
no test coverage detected