Files
cas_tt_cloud_backend/utils/string_test.go

9 lines
109 B
Go
Raw Normal View History

2021-09-28 11:47:19 +08:00
package utils
import "testing"
func TestToSnake(t *testing.T) {
src := "sys_"
t.Log(ToSnake(src, "_"))
}