mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
16 lines
259 B
Go
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))
|
||
|
|
})
|
||
|
|
}
|