Files
PandaX/pkg/tool/base_test.go
2023-09-19 10:18:50 +08:00

14 lines
200 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)
}