forked from TrueCloudLab/frostfs-contract
8553320e1c
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
13 lines
260 B
Go
13 lines
260 B
Go
package tests
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/neotest"
|
|
"github.com/nspcc-dev/neo-go/pkg/neotest/chain"
|
|
)
|
|
|
|
func newExecutor(t *testing.T) *neotest.Executor {
|
|
bc, acc := chain.NewSingle(t)
|
|
return neotest.NewExecutor(t, bc, acc, acc)
|
|
}
|