Files
hermez-node/eth/client_test.go
2021-01-29 17:46:14 +01:00

15 lines
197 B
Go

package eth
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestClientInterface(t *testing.T) {
var c ClientInterface
client := &Client{}
c = client
require.NotNil(t, c)
}