(t *testing.T)
| 95 | } |
| 96 | |
| 97 | func TestEnv_Command_Linux(t *testing.T) { |
| 98 | if cmd := envCommand("Linux", nil); cmd != "env" { |
| 99 | t.Errorf("Linux env: got %q", cmd) |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | func TestEnv_Command_Windows(t *testing.T) { |
| 104 | if cmd := envCommand("Windows", nil); cmd != "set" { |
nothing calls this directly
no test coverage detected