(t *testing.T)
| 479 | } |
| 480 | |
| 481 | func TestSetCertFromFile(t *testing.T) { |
| 482 | c := tc().SetCertFromFile( |
| 483 | tests.GetTestFilePath("sample-client.pem"), |
| 484 | tests.GetTestFilePath("sample-client-key.pem"), |
| 485 | ) |
| 486 | tests.AssertEqual(t, true, len(c.TLSClientConfig.Certificates) == 1) |
| 487 | } |
| 488 | |
| 489 | func TestSetOutputDirectory(t *testing.T) { |
| 490 | outFile := "test_output_dir" |
nothing calls this directly
no test coverage detected
searching dependent graphs…