Search Apps Documentation Source Content File Folder Download Copy Actions Download

misc.gno

0.12 Kb · 6 lines
1package testutils
2
3// WrapCall adds a frame to the call stack, for testing call stack depth.
4func WrapCall(fn func()) {
5	fn()
6}