(t *testing.T)
| 474 | } |
| 475 | |
| 476 | func TestSetCerts(t *testing.T) { |
| 477 | c := tc().SetCerts(tls.Certificate{}, tls.Certificate{}) |
| 478 | tests.AssertEqual(t, true, len(c.TLSClientConfig.Certificates) == 2) |
| 479 | } |
| 480 | |
| 481 | func TestSetCertFromFile(t *testing.T) { |
| 482 | c := tc().SetCertFromFile( |
nothing calls this directly
no test coverage detected
searching dependent graphs…