mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 07:35:02 +00:00
14 lines
270 B
Go
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))
|
|
|
|
}
|