Files
PandaX/pkg/tool/base_test.go
2023-06-19 17:06:38 +08:00

9 lines
130 B
Go

package tool
import "testing"
func TestToCamelCase(t *testing.T) {
camelCase := ToCamelCase("hello_world")
t.Log(camelCase)
}