(t *testing.T, rootCmd *cobra.Command, options *RootCmdOptions)
| 30 | ) |
| 31 | |
| 32 | func kamelTestPostAddCommandInit(t *testing.T, rootCmd *cobra.Command, options *RootCmdOptions) { |
| 33 | t.Helper() |
| 34 | |
| 35 | err := kamelPostAddCommandInit(rootCmd, options.Flags) |
| 36 | require.NoError(t, err) |
| 37 | } |
| 38 | |
| 39 | func kamelTestPreAddCommandInitWithClient(client client.Client) (*RootCmdOptions, *cobra.Command) { |
| 40 | options := RootCmdOptions{ |
no test coverage detected