(t *testing.T, path string)
| 170 | } |
| 171 | |
| 172 | func mustTouch(t *testing.T, path string) { |
| 173 | t.Helper() |
| 174 | f, err := os.Create(path) |
| 175 | assert.NilError(t, err) |
| 176 | assert.NilError(t, f.Close()) |
| 177 | } |
no test coverage detected
searching dependent graphs…