Files
avo/internal/opcodesxml/opcodesxml_test.go
Michael McLoughlin 1735441939 all: apply gofumpt (#79)
Apply @mvdan's opinionated gofumpt formatter across the codebase.
2019-04-13 22:53:13 -05:00

11 lines
152 B
Go

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