Smoke test that the program runs.
(t *testing.T)
| 46 | |
| 47 | // Smoke test that the program runs. |
| 48 | func TestExec(t *testing.T) { |
| 49 | cmd := exec.Command(sizerExe(t)) |
| 50 | output, err := cmd.CombinedOutput() |
| 51 | assert.NoErrorf(t, err, "command failed; output: %#v", string(output)) |
| 52 | } |
| 53 | |
| 54 | func newGitBomb(t *testing.T, repo *testutils.TestRepo, depth, breadth int, body string) { |
| 55 | t.Helper() |
nothing calls this directly
no test coverage detected