(t *testing.T)
| 1983 | } |
| 1984 | |
| 1985 | func Test_Client_SetRootCertificate(t *testing.T) { |
| 1986 | t.Parallel() |
| 1987 | |
| 1988 | client := New().SetRootCertificate("../.github/testdata/ssl.pem") |
| 1989 | require.NotNil(t, client.TLSConfig().RootCAs) |
| 1990 | } |
| 1991 | |
| 1992 | func Test_Client_SetRootCertificateFromString(t *testing.T) { |
| 1993 | t.Parallel() |
nothing calls this directly
no test coverage detected