neo-go/pkg/consensus/commit_test.go

18 lines
309 B
Go
Raw Normal View History

2019-11-15 10:32:40 +00:00
package consensus
import (
"testing"
"github.com/nspcc-dev/neo-go/pkg/internal/random"
2019-11-15 10:32:40 +00:00
"github.com/stretchr/testify/require"
)
func TestCommit_Setters(t *testing.T) {
var sign [signatureSize]byte
random.Fill(sign[:])
2019-11-15 10:32:40 +00:00
var c commit
c.SetSignature(sign[:])
require.Equal(t, sign[:], c.Signature())
}