Files
PandaX/pkg/tool/base_test.go
2023-09-21 18:00:33 +08:00

19 lines
294 B
Go

package tool
import "testing"
func TestToCamelCase(t *testing.T) {
camelCase := ToCamelCase("hello_world")
t.Log(camelCase)
}
func TestGenerateID(t *testing.T) {
id := GenerateID()
t.Log(id)
}
func TestGetInterfaceType(t *testing.T) {
id := GetInterfaceType(`{"aa": 23}`)
t.Log(id)
}