(t *testing.T)
| 78 | } |
| 79 | |
| 80 | func NewTestEnvTerminal(t *testing.T) *Env { |
| 81 | t.Helper() |
| 82 | return newTestEnv(t, true) |
| 83 | } |
| 84 | |
| 85 | func newTestEnv(t *testing.T, isTerminal bool) *Env { |
| 86 | repo := repository.CreateGoGitTestRepo(t, false) |
nothing calls this directly
no test coverage detected