neo-go/pkg/rpcclient/local_test.go

19 lines
421 B
Go
Raw Normal View History

package rpcclient
import (
"context"
"testing"
"github.com/nspcc-dev/neo-go/pkg/neorpc"
"github.com/stretchr/testify/require"
)
func TestInternalClientClose(t *testing.T) {
icl, err := NewInternal(context.TODO(), func(ctx context.Context, ch chan<- neorpc.Notification) func(*neorpc.Request) (*neorpc.Response, error) {
return nil
})
require.NoError(t, err)
icl.Close()
require.NoError(t, icl.GetError())
}