configRenderingEngine is a minimal test runtime adapter that overrides RenderConfig to emit a sentinel step. Used only in tests to validate that the orchestrator correctly prepends config steps before execution steps.
| 14 | // to emit a sentinel step. Used only in tests to validate that the orchestrator |
| 15 | // correctly prepends config steps before execution steps. |
| 16 | type configRenderingEngine struct { |
| 17 | BaseEngine |
| 18 | steps []map[string]any |
| 19 | } |
| 20 | |
| 21 | func newConfigRenderingEngine(steps []map[string]any) *configRenderingEngine { |
| 22 | return &configRenderingEngine{ |
nothing calls this directly
no outgoing calls
no test coverage detected