neoneo-go/pkg/vm/opcode/opcode_test.go

31 lines
549 B
Go
Raw Normal View History

package opcode
import (
"testing"
"github.com/stretchr/testify/assert"
2020-05-21 10:00:11 +00:00
"github.com/stretchr/testify/require"
)
// Nothing more to test here, really.
func TestStringer(t *testing.T) {
tests := map[Opcode]string{
ADD: "ADD",
SUB: "SUB",
ASSERT: "ASSERT",
0xff: "Opcode(255)",
}
for o, s := range tests {
assert.Equal(t, s, o.String())
}
}
2020-05-21 10:00:11 +00:00
func TestFromString(t *testing.T) {
_, err := FromString("abcdef")
require.Error(t, err)
op, err := FromString(MUL.String())
require.NoError(t, err)
require.Equal(t, MUL, op)
}