Files
avo/internal/opcodesxml/opcodesxml_test.go
2018-11-21 21:38:19 -06:00

13 lines
157 B
Go

package opcodesxml
import (
"testing"
)
func TestReadFile(t *testing.T) {
_, err := ReadFile("testdata/x86_64.xml")
if err != nil {
t.Fatal(err)
}
}