()
| 82 | } |
| 83 | |
| 84 | func getCallingFunction() string { |
| 85 | pc, _, _, _ := runtime.Caller(2) |
| 86 | fullName := runtime.FuncForPC(pc).Name() |
| 87 | return fullName[strings.LastIndex(fullName, ".")+1:] |
| 88 | } |
| 89 | |
| 90 | // All methods and functions which need to be overridden for dry run. |
| 91 |
no test coverage detected