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.
22 lines
428 B
22 lines
428 B
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) |
|
}) |
|
}
|
|
|