You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
197 B

  1. package eth
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/require"
  5. )
  6. func TestClientInterface(t *testing.T) {
  7. var c ClientInterface
  8. client := &Client{}
  9. c = client
  10. require.NotNil(t, c)
  11. }