mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-26 10:49:36 +08:00
14 lines
200 B
Go
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)
|
|
}
|