(name string)
| 206 | } |
| 207 | |
| 208 | func getApplyFiles(name string) applyFiles { |
| 209 | return applyFiles{ |
| 210 | Src: name + ".src", |
| 211 | Patch: name + ".patch", |
| 212 | Out: name + ".out", |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | func (f applyFiles) Load(t *testing.T) (src []byte, patch []byte, out []byte) { |
| 217 | load := func(name, kind string) []byte { |
no outgoing calls
no test coverage detected