(testFunc func())
| 360 | } |
| 361 | |
| 362 | func catchPanic(testFunc func()) (recv any) { |
| 363 | defer func() { |
| 364 | recv = recover() |
| 365 | }() |
| 366 | |
| 367 | testFunc() |
| 368 | return |
| 369 | } |
| 370 | |
| 371 | type testRoute struct { |
| 372 | path string |
no outgoing calls
no test coverage detected