go-common/app/interface/main/space/dao/hbase_test.go
2019-04-22 18:49:16 +08:00

16 lines
259 B
Go

package dao
import (
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestDao_hbaseMd5Key(t *testing.T) {
mid := int64(908085)
convey.Convey("test article stat", t, func() {
res := hbaseMd5Key(mid)
convey.Printf("%s", string(res))
})
}