mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 23:30:36 +00:00
Merge pull request #571 from nspcc-dev/move-compiler-tests
compiler: move tests from vm/tests
This commit is contained in:
commit
a939c97a25
19 changed files with 18 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import "testing"
|
import "testing"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
||||||
|
@ -9,7 +9,7 @@ func TestImportFunction(t *testing.T) {
|
||||||
src := `
|
src := `
|
||||||
package somethingelse
|
package somethingelse
|
||||||
|
|
||||||
import "github.com/CityOfZion/neo-go/pkg/vm/tests/foo"
|
import "github.com/CityOfZion/neo-go/pkg/compiler/testdata/foo"
|
||||||
|
|
||||||
func Main() int {
|
func Main() int {
|
||||||
i := foo.NewBar()
|
i := foo.NewBar()
|
||||||
|
@ -23,7 +23,7 @@ func TestImportStruct(t *testing.T) {
|
||||||
src := `
|
src := `
|
||||||
package somethingwedontcareabout
|
package somethingwedontcareabout
|
||||||
|
|
||||||
import "github.com/CityOfZion/neo-go/pkg/vm/tests/bar"
|
import "github.com/CityOfZion/neo-go/pkg/compiler/testdata/bar"
|
||||||
|
|
||||||
func Main() int {
|
func Main() int {
|
||||||
b := bar.Bar{
|
b := bar.Bar{
|
||||||
|
@ -39,7 +39,7 @@ func TestMultipleDirFileImport(t *testing.T) {
|
||||||
src := `
|
src := `
|
||||||
package hello
|
package hello
|
||||||
|
|
||||||
import "github.com/CityOfZion/neo-go/pkg/vm/tests/foobar"
|
import "github.com/CityOfZion/neo-go/pkg/compiler/testdata/foobar"
|
||||||
|
|
||||||
func Main() bool {
|
func Main() bool {
|
||||||
ok := foobar.OtherBool()
|
ok := foobar.OtherBool()
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/big"
|
"math/big"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import "testing"
|
import "testing"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
|
@ -1,4 +1,4 @@
|
||||||
package vm_test
|
package compiler_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
Loading…
Reference in a new issue