Files
avo/internal/opcodesxml/opcodesxml_test.go

11 lines
152 B
Go
Raw Permalink Normal View History

2018-11-20 13:51:17 -06:00
package opcodesxml
import "testing"
2018-11-20 13:51:17 -06:00
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)
}
}