mask_test.go 242 B

1234567891011121314
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestGenerateMask(t *testing.T) {
  8. Convey("Test generate mask", t, func() {
  9. testDao.GenerateMask(context.TODO(), 32, 11, 1, 0, 0, 0, 0)
  10. })
  11. }