(image bufimage.Image)
| 404 | } |
| 405 | |
| 406 | func testGetImageFilePaths(image bufimage.Image) []string { |
| 407 | var fileNames []string |
| 408 | for _, file := range image.Files() { |
| 409 | fileNames = append(fileNames, file.Path()) |
| 410 | } |
| 411 | sort.Strings(fileNames) |
| 412 | return fileNames |
| 413 | } |
| 414 | |
| 415 | func testGetImageImportPaths(image bufimage.Image) []string { |
| 416 | var importNames []string |
no test coverage detected
searching dependent graphs…