(t *testing.T)
| 293 | } |
| 294 | |
| 295 | func TestHandlersOK(t *testing.T) { |
| 296 | t.Parallel() |
| 297 | |
| 298 | var root cli.RootCmd |
| 299 | cmd, err := root.Command(root.CoreSubcommands()) |
| 300 | require.NoError(t, err) |
| 301 | |
| 302 | clitest.HandlersOK(t, cmd) |
| 303 | } |
| 304 | |
| 305 | func TestCreateAgentClient_Token(t *testing.T) { |
| 306 | t.Parallel() |
nothing calls this directly
no test coverage detected