overflow_service/proxy/utils/string_test.go
2017-06-27 09:08:47 +09:00

35 lines
327 B
Go

package utils
import (
"strings"
"testing"
)
func TestStringUpper(t *testing.T) {
res := "crawlerInputItem"
aa := strings.Title(res)
t.Log(aa)
}
func TestGM(t *testing.T) {
t.Log(GenerateModelStr("target"))
}
func TestNil(t *testing.T) {
var oo interface{}
oo = nil
if oo == nil {
t.Log("nil!!!")
}
}