()
| 2128 | } |
| 2129 | |
| 2130 | func testAutogeneratedFunction() { |
| 2131 | defer func() { |
| 2132 | if err := recover(); err == nil { |
| 2133 | panic("did not panic") |
| 2134 | } |
| 2135 | CallerInfo() |
| 2136 | }() |
| 2137 | t := struct { |
| 2138 | io.Closer |
| 2139 | }{} |
| 2140 | c := t |
| 2141 | c.Close() |
| 2142 | } |
| 2143 | |
| 2144 | func TestCallerInfoWithAutogeneratedFunctions(t *testing.T) { |
| 2145 | NotPanics(t, func() { |
no test coverage detected