(cmd *cobra.Command, args []string)
| 21 | } |
| 22 | |
| 23 | func runTestCmd(cmd *cobra.Command, args []string) error { |
| 24 | rtn, err := wshclient.TestMultiArgCommand(RpcClient, "testarg", 42, true, nil) |
| 25 | if err != nil { |
| 26 | return err |
| 27 | } |
| 28 | WriteStdout("%s\n", rtn) |
| 29 | return nil |
| 30 | } |
nothing calls this directly
no test coverage detected