2019-12-03 14:05:06 +00:00
|
|
|
package opcode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Nothing more to test here, really.
|
|
|
|
func TestStringer(t *testing.T) {
|
|
|
|
tests := map[Opcode]string{
|
2020-05-06 12:54:18 +00:00
|
|
|
ADD: "ADD",
|
|
|
|
SUB: "SUB",
|
|
|
|
ASSERT: "ASSERT",
|
|
|
|
0xff: "Opcode(255)",
|
2019-12-03 14:05:06 +00:00
|
|
|
}
|
|
|
|
for o, s := range tests {
|
|
|
|
assert.Equal(t, s, o.String())
|
|
|
|
}
|
|
|
|
}
|