(b []byte)
| 1819 | } |
| 1820 | |
| 1821 | func (m mockConnection) Write(b []byte) (n int, err error) { |
| 1822 | time.Sleep(*m.writeLatency) |
| 1823 | return m.Conn.Write(b) |
| 1824 | } |
| 1825 | |
| 1826 | func TestConnExecBatchWriteError(t *testing.T) { |
| 1827 | t.Parallel() |
no outgoing calls
no test coverage detected