mockTLSer is a mock implementation of TLSer for testing
| 125 | |
| 126 | // mockTLSer is a mock implementation of TLSer for testing |
| 127 | type mockTLSer struct { |
| 128 | validateError error |
| 129 | runError error |
| 130 | } |
| 131 | |
| 132 | func (m *mockTLSer) Validate() error { |
| 133 | return m.validateError |
nothing calls this directly
no outgoing calls
no test coverage detected