(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestGetCallerWrap_PassCaller(t *testing.T) { |
| 48 | err := callPassCaller() |
| 49 | wantErr(t, err, "callPassCaller") |
| 50 | } |
| 51 | |
| 52 | func callPassCaller() error { |
| 53 | return passCaller() |
nothing calls this directly
no test coverage detected