(t *testing.T)
| 178 | } |
| 179 | |
| 180 | func TestExtractForwardContext_EmptyInput(t *testing.T) { |
| 181 | ctx := ExtractForwardContext(nil) |
| 182 | if ctx != (ForwardContext{}) { |
| 183 | t.Errorf("empty input produced non-zero context: %+v", ctx) |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | func TestBuildForwardBody_WithCommentAndContext(t *testing.T) { |
| 188 | ctx := ForwardContext{ |
nothing calls this directly
no test coverage detected