24 lines
225 B
Go
24 lines
225 B
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
"strings"
|
|
)
|
|
|
|
func TestStringUpper(t *testing.T) {
|
|
|
|
res := "crawlerInputItem"
|
|
|
|
aa := strings.Title(res)
|
|
|
|
|
|
t.Log(aa)
|
|
|
|
|
|
}
|
|
|
|
func TestGM(t *testing.T) {
|
|
|
|
t.Log(GenerateModelStr("target"))
|
|
|
|
} |