Files
avo/internal/opcodesxml/opcodesxml_test.go

13 lines
157 B
Go
Raw Normal View History

2018-11-20 13:51:17 -06:00
package opcodesxml
import (
"testing"
)
func TestReadFile(t *testing.T) {
_, err := ReadFile("testdata/x86_64.xml")
2018-11-20 13:51:17 -06:00
if err != nil {
t.Fatal(err)
}
}