mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
15 lines
220 B
Go
15 lines
220 B
Go
|
|
package service
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
)
|
||
|
|
|
||
|
|
func Test_SyncAllUser(t *testing.T) {
|
||
|
|
Convey("Test_SyncAllUser", t, func() {
|
||
|
|
s.SyncAllUser(context.Background())
|
||
|
|
})
|
||
|
|
}
|