(t *testing.T)
| 129 | } |
| 130 | |
| 131 | func TestFormat(t *testing.T) { |
| 132 | t.Parallel() |
| 133 | res := runTest(t, "testdata/format", "format") |
| 134 | res.assertOutput("", "") |
| 135 | res.assertNoErr() |
| 136 | res.checkGolden() |
| 137 | } |
| 138 | |
| 139 | func updateGoldenDir(t *testing.T, origDir, resultDir, goldenDir string) { |
| 140 | t.Helper() |
nothing calls this directly
no test coverage detected
searching dependent graphs…