09e197eaf3
Also make tests expect []byte{} instead of 0.
50 lines
763 B
Go
50 lines
763 B
Go
package vm_test
|
|
|
|
import (
|
|
"math/big"
|
|
"testing"
|
|
)
|
|
|
|
func TestImportFunction(t *testing.T) {
|
|
src := `
|
|
package somethingelse
|
|
|
|
import "github.com/CityOfZion/neo-go/pkg/vm/tests/foo"
|
|
|
|
func Main() int {
|
|
i := foo.NewBar()
|
|
return i
|
|
}
|
|
`
|
|
eval(t, src, big.NewInt(10))
|
|
}
|
|
|
|
func TestImportStruct(t *testing.T) {
|
|
src := `
|
|
package somethingwedontcareabout
|
|
|
|
import "github.com/CityOfZion/neo-go/pkg/vm/tests/bar"
|
|
|
|
func Main() int {
|
|
b := bar.Bar{
|
|
X: 4,
|
|
}
|
|
return b.Y
|
|
}
|
|
`
|
|
eval(t, src, []byte{})
|
|
}
|
|
|
|
func TestMultipleDirFileImport(t *testing.T) {
|
|
src := `
|
|
package hello
|
|
|
|
import "github.com/CityOfZion/neo-go/pkg/vm/tests/foobar"
|
|
|
|
func Main() bool {
|
|
ok := foobar.OtherBool()
|
|
return ok
|
|
}
|
|
`
|
|
eval(t, src, big.NewInt(1))
|
|
}
|