(t *testing.T)
| 246 | } |
| 247 | |
| 248 | func TestFirstArg_Nil(t *testing.T) { |
| 249 | if got := firstArg(nil); got != "" { |
| 250 | t.Errorf("firstArg nil: got %q", got) |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | func TestSecondArg_Adapter(t *testing.T) { |
| 255 | req := &implantpb.Request{Args: []string{"a", "b"}} |
nothing calls this directly
no test coverage detected