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)
|
||
|
})
|
||
|
}
|