snoop 37a2128b45 fixed
return error
2017-06-08 20:53:04 +09:00

38 lines
331 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"))
}
func TestNil(t *testing.T) {
var oo interface{}
oo = nil;
if oo == nil {
t.Log("nil!!!")
}
}