(t *testing.T, path, filename, value string)
| 58 | } |
| 59 | |
| 60 | func checkFileContent(t *testing.T, path, filename, value string) { |
| 61 | out, err := os.ReadFile(filepath.Join(path, filename)) |
| 62 | require.NoErrorf(t, err, "failed to read %s file", filename) |
| 63 | assert.Equal(t, value, strings.TrimSpace(string(out))) |
| 64 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…