(t *testing.T)
| 101 | } |
| 102 | |
| 103 | func TestEnv_Command_Windows(t *testing.T) { |
| 104 | if cmd := envCommand("Windows", nil); cmd != "set" { |
| 105 | t.Errorf("Windows env: got %q", cmd) |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | func TestKill_Command_Linux(t *testing.T) { |
| 110 | cmd := killCommand("Linux", &implantpb.Request{Args: []string{"1234"}}) |
nothing calls this directly
no test coverage detected