(t *testing.T)
| 236 | } |
| 237 | |
| 238 | func TestChecksCommand_RejectsMultipleArgs(t *testing.T) { |
| 239 | cmd := NewChecksCommand() |
| 240 | err := cmd.Args(cmd, []string{"42", "43"}) |
| 241 | assert.Error(t, err, "checks command should reject more than one argument") |
| 242 | } |
| 243 | |
| 244 | // --------------------------------------------------------------------------- |
| 245 | // ChecksResult JSON serialization |
nothing calls this directly
no test coverage detected