(p []byte, off int64)
| 774 | func (b badFile) Stat() (os.FileInfo, error) { return nil, errors.New("unsupported") } |
| 775 | func (b badFile) ReadAt(p []byte, off int64) (int, error) { return 0, nil } |
| 776 | func (b badFile) WriteAt(p []byte, off int64) (int, error) { return len(p), nil } |
| 777 | func (b badFile) Close() error { return nil } |
| 778 | |
| 779 | func TestWrapioBreakout(t *testing.T) { |
no outgoing calls
no test coverage detected