sync_test.go 220 B

1234567891011121314
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_SyncAllUser(t *testing.T) {
  8. Convey("Test_SyncAllUser", t, func() {
  9. s.SyncAllUser(context.Background())
  10. })
  11. }