mirror of
https://github.com/arnaucube/hermez-node.git
synced 2026-02-07 11:26:44 +01:00
15 lines
197 B
Go
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)
|
|
}
|