(p []byte)
| 386 | } |
| 387 | |
| 388 | func (sb *SyncBuffer) Write(p []byte) (n int, err error) { |
| 389 | sb.mu.Lock() |
| 390 | defer sb.mu.Unlock() |
| 391 | return sb.buf.Write(p) |
| 392 | } |
| 393 | |
| 394 | // fileContentTest provides a basic reusable test-case for running a Taskfile |
| 395 | // and inspect generated files. |
nothing calls this directly
no outgoing calls
no test coverage detected