(t *testing.T)
| 1211 | } |
| 1212 | |
| 1213 | func TestCodexEngineGetHarnessScriptName(t *testing.T) { |
| 1214 | engine := NewCodexEngine() |
| 1215 | if engine.GetHarnessScriptName() != "codex_harness.cjs" { |
| 1216 | t.Errorf("Expected 'codex_harness.cjs', got '%s'", engine.GetHarnessScriptName()) |
| 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | func TestCodexEngineExecutionUsesHarness(t *testing.T) { |
| 1221 | engine := NewCodexEngine() |
nothing calls this directly
no test coverage detected