core: move native invocation tests into native
This commit is contained in:
parent
2086bca303
commit
8057c096c6
1 changed files with 4 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
||||||
package core_test
|
package native_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -22,6 +23,8 @@ import (
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var pathToInternalContracts = filepath.Join("..", "..", "..", "internal", "contracts")
|
||||||
|
|
||||||
func TestNativeContract_Invoke(t *testing.T) {
|
func TestNativeContract_Invoke(t *testing.T) {
|
||||||
const (
|
const (
|
||||||
transferCPUFee = 1 << 17
|
transferCPUFee = 1 << 17
|
Loading…
Reference in a new issue