(t *testing.T)
| 217 | } |
| 218 | |
| 219 | func TestValidEngineNames(t *testing.T) { |
| 220 | engines := ValidEngineNames() |
| 221 | |
| 222 | // Verify the list is not empty |
| 223 | assert.NotEmpty(t, engines, "Engine names list should not be empty") |
| 224 | |
| 225 | // Verify expected engines are present |
| 226 | expectedEngines := []string{"copilot", "claude", "codex", "gemini", "antigravity", "opencode", "crush"} |
| 227 | for _, expected := range expectedEngines { |
| 228 | assert.Contains(t, engines, expected, "Expected engine '%s' to be in the list", expected) |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | func TestCompleteEngineNames(t *testing.T) { |
| 233 | cmd := &cobra.Command{} |
nothing calls this directly
no test coverage detected