(t *testing.T)
| 457 | } |
| 458 | |
| 459 | func TestGetTLSClientConfig(t *testing.T) { |
| 460 | c := tc() |
| 461 | config := c.GetTLSClientConfig() |
| 462 | tests.AssertEqual(t, true, c.TLSClientConfig != nil) |
| 463 | tests.AssertEqual(t, config, c.TLSClientConfig) |
| 464 | } |
| 465 | |
| 466 | func TestSetRootCertFromFile(t *testing.T) { |
| 467 | c := tc().SetRootCertsFromFile(tests.GetTestFilePath("sample-root.pem")) |
nothing calls this directly
no test coverage detected
searching dependent graphs…