(t *testing.T)
| 13 | var mockEnv = []string{"env=1"} |
| 14 | |
| 15 | func TestExecCommandCreator_Create(t *testing.T) { |
| 16 | t.Parallel() |
| 17 | |
| 18 | got := NewExecCmdCreator().Create("") |
| 19 | assert.IsType(t, got, &execCmd{}) |
| 20 | } |
| 21 | |
| 22 | func TestExecCommand_SetEnv(t *testing.T) { |
| 23 | t.Parallel() |
nothing calls this directly
no test coverage detected