Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@ -0,0 +1,22 @@
package dao
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestMCInfo(t *testing.T) {
Convey("TestMCInfo", t, func() {
var (
partition int32 = -2233
offset1 int64 = 778899
offset2 int64
err error
)
err = d.SetOffsetCache(c, "test", partition, offset1)
So(err, ShouldBeNil)
offset2, err = d.OffsetCache(c, "test", partition)
So(offset1, ShouldEqual, offset2)
})
}