(t *testing.T)
| 88 | } |
| 89 | |
| 90 | func TestFunctionName(t *testing.T) { |
| 91 | assert.Regexp(t, `^(.*/vendor/)?github.com/gin-gonic/gin.somefunction$`, nameOfFunction(somefunction)) |
| 92 | } |
| 93 | |
| 94 | func somefunction() { |
| 95 | // this empty function is used by TestFunctionName() |
nothing calls this directly
no test coverage detected