mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
15 lines
242 B
Go
15 lines
242 B
Go
|
|
package dao
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestGenerateMask(t *testing.T) {
|
||
|
|
Convey("Test generate mask", t, func() {
|
||
|
|
testDao.GenerateMask(context.TODO(), 32, 11, 1, 0, 0, 0, 0)
|
||
|
|
})
|
||
|
|
}
|