package clientsync import ( "testing" "github.com/stretchr/testify/assert" ) func TestService(t *testing.T) { svc := New(nil) assert.NotNil(t, svc) assert.Equal(t, svc.batchSize, int32(100)) }