neo-go/pkg/consensus/commit_test.go

19 lines
306 B
Go
Raw Normal View History

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