You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)) |
|
}) |
|
}
|
|
|