(t *testing.T)
| 209 | } |
| 210 | |
| 211 | func TestRouterGroupCombineHandlersEmptySliceNotNil(t *testing.T) { |
| 212 | group := &RouterGroup{ |
| 213 | Handlers: HandlersChain{}, |
| 214 | } |
| 215 | |
| 216 | result := group.combineHandlers(HandlersChain{}) |
| 217 | assert.NotNil(t, result, "result should not be nil even with empty handlers") |
| 218 | assert.Empty(t, result, "empty handlers should return empty chain") |
| 219 | } |
nothing calls this directly
no test coverage detected