mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 04:10:54 +00:00
15 lines
226 B
Go
15 lines
226 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestGetFuncName(t *testing.T) {
|
||
|
name := GetFuncName(TestGetFuncName)
|
||
|
t.Log(name)
|
||
|
if !strings.HasSuffix(name, ".TestGetFuncName") {
|
||
|
t.Error("get func name error")
|
||
|
}
|
||
|
}
|