Files
avo/examples/add/add_test.go
2018-12-11 00:18:22 -08:00

13 lines
210 B
Go

package add
import (
"testing"
"testing/quick"
)
//go:generate go run asm.go -out add.s -stubs stub.go
func TestAdd(t *testing.T) {
quick.CheckEqual(Add, func(x, y uint64) uint64 { return x + y }, nil)
}