go-common/app/interface/main/space/dao/hbase_test.go

16 lines
259 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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))
})
}