go-common/app/admin/main/dm/dao/mask_test.go

15 lines
242 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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)
})
}