status-go/protocol/push_notification_server/push_notification_server_test.go
2020-07-27 08:50:48 +02:00

14 lines
270 B
Go

package protocol
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestPushNotificationServerValidateRegistration(t *testing.T) {
server := Server{}
require.Equal(t, ErrEmptyPushNotificationRegisterMessage, server.ValidateRegistration(nil, nil))
}