(t *testing.T)
| 173 | } |
| 174 | |
| 175 | func captureVerifyOutput(t *testing.T) (string, error) { |
| 176 | t.Helper() |
| 177 | out, err := captureVerifyOutputSeparate(t) |
| 178 | return out.stdout + out.stderr, err |
| 179 | } |
| 180 | |
| 181 | func TestVerify_AllPass(t *testing.T) { |
| 182 | tmpDir := createVerifyTestFiles(t) |
no test coverage detected