Files
PandaX/pkg/tool/base_test.go

22 lines
339 B
Go

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