()
| 2529 | } |
| 2530 | |
| 2531 | func testAutogeneratedFunction() { |
| 2532 | defer func() { |
| 2533 | if err := recover(); err == nil { |
| 2534 | panic("did not panic") |
| 2535 | } |
| 2536 | CallerInfo() |
| 2537 | }() |
| 2538 | t := struct { |
| 2539 | io.Closer |
| 2540 | }{} |
| 2541 | c := t |
| 2542 | c.Close() |
| 2543 | } |
| 2544 | |
| 2545 | func TestCallerInfoWithAutogeneratedFunctions(t *testing.T) { |
| 2546 | t.Parallel() |
no test coverage detected