(t *testing.T, f FileEntry, path, source string, exists bool)
| 574 | } |
| 575 | |
| 576 | func assertFileEntry(t *testing.T, f FileEntry, path, source string, exists bool) { |
| 577 | t.Helper() |
| 578 | if f.Path != path { |
| 579 | t.Errorf("path: want %q, got %q", path, f.Path) |
| 580 | } |
| 581 | if f.Source != source { |
| 582 | t.Errorf("source: want %q, got %q", source, f.Source) |
| 583 | } |
| 584 | if f.Exists != exists { |
| 585 | t.Errorf("exists: want %v, got %v", exists, f.Exists) |
| 586 | } |
| 587 | } |
no outgoing calls
no test coverage detected