mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-03 13:58:37 +00:00
20 lines
405 B
Go
20 lines
405 B
Go
|
package payload
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestGetDataCommandType(t *testing.T) {
|
||
|
getData, err := NewGetDataMessage(InvTypeBlock)
|
||
|
|
||
|
assert.Equal(t, err, nil)
|
||
|
assert.Equal(t, command.GetData, getData.Command())
|
||
|
}
|
||
|
|
||
|
func TestOtherFunctions(t *testing.T) {
|
||
|
// Other capabilities are tested in the inherited struct
|
||
|
}
|