(t *testing.T, path string)
| 778 | } |
| 779 | |
| 780 | func readTestFile(t *testing.T, path string) string { |
| 781 | t.Helper() |
| 782 | data, err := os.ReadFile(path) |
| 783 | if err != nil { |
| 784 | t.Fatal(err) |
| 785 | } |
| 786 | return string(data) |
| 787 | } |
| 788 | |
| 789 | func assertServiceCount(t *testing.T, s *graphjinService, dbName, query string, want int) { |
| 790 | t.Helper() |
no outgoing calls
no test coverage detected