()
| 71 | } |
| 72 | |
| 73 | func sampleFiles() []utils.FileInfo { |
| 74 | return []utils.FileInfo{ |
| 75 | {Path: "src/main.go", Content: "package main\nfunc main() {}", Size: 30, Type: "Go"}, |
| 76 | {Path: "src/util.go", Content: "package main\nfunc helper() {}", Size: 32, Type: "Go"}, |
| 77 | {Path: "README.md", Content: "# Project", Size: 10, Type: "Markdown"}, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | // --------------------------------------------------------------------------- |
| 82 | // Validator tests |
no outgoing calls
no test coverage detected