neo-go/pkg/vm/tests/numeric_test.go
2019-10-18 18:36:54 +03:00

25 lines
281 B
Go

package vm_test
import (
"math/big"
"testing"
)
var numericTestCases = []testCase{
{
"add",
`
package foo
func Main() int {
x := 2
y := 4
return x + y
}
`,
big.NewInt(6),
},
}
func TestNumericExprs(t *testing.T) {
runTestCases(t, numericTestCases)
}