(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestCodexProvider_Name(t *testing.T) { |
| 11 | p := NewCodexProvider("") |
| 12 | if p.Name() != "Codex" { |
| 13 | t.Errorf("Name() = %q, want Codex", p.Name()) |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func TestCodexProvider_CLIPath(t *testing.T) { |
| 18 | p := NewCodexProvider("") |
nothing calls this directly
no test coverage detected