You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
350 B
17 lines
350 B
package fcm
|
|
|
|
import (
|
|
"OpenIM/internal/push"
|
|
"OpenIM/pkg/common/db/cache"
|
|
"context"
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func Test_Push(t *testing.T) {
|
|
var redis cache.Cache
|
|
offlinePusher := NewClient(redis)
|
|
err := offlinePusher.Push(context.Background(), []string{"userID1"}, "test", "test", &push.Opts{})
|
|
assert.Nil(t, err)
|
|
}
|