diff --git a/cli/wallet/nep11_test.go b/cli/nep_test/nep11_test.go similarity index 98% rename from cli/wallet/nep11_test.go rename to cli/nep_test/nep11_test.go index 13ae26b76..adcc22e29 100644 --- a/cli/wallet/nep11_test.go +++ b/cli/nep_test/nep11_test.go @@ -1,4 +1,4 @@ -package wallet_test +package nep_test import ( "bytes" @@ -659,3 +659,7 @@ func deployNFTContract(t *testing.T, e *testcli.Executor) util.Uint160 { func deployNNSContract(t *testing.T, e *testcli.Executor) util.Uint160 { return testcli.DeployContract(t, e, "../../examples/nft-nd-nns/", "../../examples/nft-nd-nns/nns.yml", testcli.ValidatorWallet, testcli.ValidatorAddr, testcli.ValidatorPass) } + +func deployVerifyContract(t *testing.T, e *testcli.Executor) util.Uint160 { + return testcli.DeployContract(t, e, "../smartcontract/testdata/verify.go", "../smartcontract/testdata/verify.yml", testcli.ValidatorWallet, testcli.ValidatorAddr, testcli.ValidatorPass) +} diff --git a/cli/wallet/nep17_test.go b/cli/nep_test/nep17_test.go similarity index 99% rename from cli/wallet/nep17_test.go rename to cli/nep_test/nep17_test.go index c451f0241..081780928 100644 --- a/cli/wallet/nep17_test.go +++ b/cli/nep_test/nep17_test.go @@ -1,4 +1,4 @@ -package wallet_test +package nep_test import ( "io" diff --git a/cli/wallet/wallet_test.go b/cli/wallet/wallet_test.go index fb7229355..db1601b5c 100644 --- a/cli/wallet/wallet_test.go +++ b/cli/wallet/wallet_test.go @@ -904,3 +904,7 @@ func TestWalletConvert(t *testing.T) { require.Equal(t, exp, act) } } + +func deployNNSContract(t *testing.T, e *testcli.Executor) util.Uint160 { + return testcli.DeployContract(t, e, "../../examples/nft-nd-nns/", "../../examples/nft-nd-nns/nns.yml", testcli.ValidatorWallet, testcli.ValidatorAddr, testcli.ValidatorPass) +}