(t *testing.T)
| 30 | } |
| 31 | |
| 32 | func TestMethodExists(t *testing.T) { |
| 33 | // testing following methods exist in all platform. |
| 34 | _, _ = CheckCloneFileSupported(os.TempDir()) |
| 35 | _, _ = CloneFile(io.Writer(nil), io.Reader(nil)) |
| 36 | _, _ = CloneFileByPath("", "") |
| 37 | } |
nothing calls this directly
no test coverage detected