| 2112 | func (invalidView) Render(io.Writer, string, any, ...string) error { panic("implement me") } |
| 2113 | |
| 2114 | type countingView struct { |
| 2115 | loadErr error |
| 2116 | loads int |
| 2117 | } |
| 2118 | |
| 2119 | func (v *countingView) Load() error { |
| 2120 | v.loads++ |
nothing calls this directly
no outgoing calls
no test coverage detected