(p []byte)
| 98 | } |
| 99 | |
| 100 | func (l *testLog) Write(p []byte) (int, error) { |
| 101 | l.mu.Lock() |
| 102 | defer l.mu.Unlock() |
| 103 | |
| 104 | return l.buf.Write(p) |
| 105 | } |
| 106 | |
| 107 | func (l *testLog) String() string { |
| 108 | l.mu.Lock() |
no outgoing calls
no test coverage detected