(t *testing.T)
| 384 | } |
| 385 | |
| 386 | func TestClearScreen(t *testing.T) { |
| 387 | var out strings.Builder |
| 388 | clearScreen(&out) |
| 389 | require.Equal(t, clearScreenSequence, out.String()) |
| 390 | } |
| 391 | |
| 392 | func TestAdaptShellArgs(t *testing.T) { |
| 393 | rootCmd := &cobra.Command{Use: "pikpakcli"} |
nothing calls this directly
no test coverage detected