mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-02 19:45:50 +00:00
b3ea7504cb
External users make use of it. Close #2190.
21 lines
626 B
Go
21 lines
626 B
Go
package subscriptions
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/internal/testserdes"
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
)
|
|
|
|
func TestNotificationEvent_MarshalUnmarshalJSON(t *testing.T) {
|
|
testserdes.MarshalUnmarshalJSON(t, &NotificationEvent{
|
|
Container: util.Uint256{1, 2, 3},
|
|
NotificationEvent: state.NotificationEvent{
|
|
ScriptHash: util.Uint160{4, 5, 6},
|
|
Name: "alarm",
|
|
Item: stackitem.NewArray([]stackitem.Item{stackitem.NewByteArray([]byte("qwerty"))}),
|
|
},
|
|
}, new(NotificationEvent))
|
|
}
|