neoneo-go/pkg/compiler/import_test.go

51 lines
793 B
Go
Raw Normal View History

package compiler_test
2018-04-22 18:11:37 +00:00
import (
"math/big"
"testing"
)
func TestImportFunction(t *testing.T) {
src := `
package somethingelse
import "github.com/nspcc-dev/neo-go/pkg/compiler/testdata/foo"
2018-04-22 18:11:37 +00:00
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/nspcc-dev/neo-go/pkg/compiler/testdata/bar"
2018-04-22 18:11:37 +00:00
func Main() int {
b := bar.Bar{
X: 4,
}
return b.Y
}
`
eval(t, src, []byte{})
2018-04-22 18:11:37 +00:00
}
func TestMultipleDirFileImport(t *testing.T) {
src := `
package hello
import "github.com/nspcc-dev/neo-go/pkg/compiler/testdata/foobar"
func Main() bool {
ok := foobar.OtherBool()
return ok
}
`
eval(t, src, big.NewInt(1))
}