forked from TrueCloudLab/neoneo-go
19 lines
420 B
Go
19 lines
420 B
Go
|
package manifest
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/nspcc-dev/neo-go/internal/testserdes"
|
||
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestGroupJSONInOut(t *testing.T) {
|
||
|
priv, err := keys.NewPrivateKey()
|
||
|
require.NoError(t, err)
|
||
|
pub := priv.PublicKey()
|
||
|
sig := make([]byte, keys.SignatureLen)
|
||
|
g := Group{pub, sig}
|
||
|
testserdes.MarshalUnmarshalJSON(t, &g, new(Group))
|
||
|
}
|