(t *testing.T)
| 23 | } |
| 24 | |
| 25 | func TestEnterpriseHandlersOK(t *testing.T) { |
| 26 | t.Parallel() |
| 27 | |
| 28 | var root cli.RootCmd |
| 29 | cmd, err := root.Command(root.EnterpriseSubcommands()) |
| 30 | require.NoError(t, err) |
| 31 | |
| 32 | clitest.HandlersOK(t, cmd) |
| 33 | } |
| 34 | |
| 35 | func TestCheckWarnings(t *testing.T) { |
| 36 | t.Parallel() |
nothing calls this directly
no test coverage detected