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.
21 lines
338 B
21 lines
338 B
package dao |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestStats(t *testing.T) { |
|
var ( |
|
oid = int64(1) |
|
typ = int32(1) |
|
cnt = int32(1) |
|
c = context.Background() |
|
) |
|
Convey("test stats count", t, WithDao(func(d *Dao) { |
|
err := d.SendStats(c, typ, oid, cnt) |
|
So(err, ShouldBeNil) |
|
})) |
|
}
|
|
|