hbase_test.go 259 B

123456789101112131415
  1. package dao
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestDao_hbaseMd5Key(t *testing.T) {
  7. mid := int64(908085)
  8. convey.Convey("test article stat", t, func() {
  9. res := hbaseMd5Key(mid)
  10. convey.Printf("%s", string(res))
  11. })
  12. }