Open a file for write
(t *testing.T)
| 55 | |
| 56 | // Open a file for write |
| 57 | func rwHandleCreateWriteOnly(t *testing.T) (r *fstest.Run, vfs *VFS, fh *RWFileHandle) { |
| 58 | return rwHandleCreateFlags(t, false, "file1", os.O_WRONLY|os.O_CREATE) |
| 59 | } |
| 60 | |
| 61 | // read data from the string |
| 62 | func rwReadString(t *testing.T, fh *RWFileHandle, n int) string { |
no test coverage detected
searching dependent graphs…