(t *testing.T)
| 529 | } |
| 530 | |
| 531 | func TestCpCommandSupportsStructuredOutput(t *testing.T) { |
| 532 | if !commandSupportsStructuredOutput(cpCmd) { |
| 533 | t.Fatal("cp should support structured output") |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | func newRelocationTestCommand(stdout, stderr *bytes.Buffer) *cobra.Command { |
| 538 | cmd := &cobra.Command{} |
nothing calls this directly
no test coverage detected