Files
cas_tt_cloud_backend/utils/string_test.go
2021-09-28 11:47:19 +08:00

9 lines
109 B
Go

package utils
import "testing"
func TestToSnake(t *testing.T) {
src := "sys_"
t.Log(ToSnake(src, "_"))
}