ip_test.go 153 B

1234567891011
  1. package netx
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. )
  6. func TestInternalIp(t *testing.T) {
  7. assert.True(t, len(InternalIp()) > 0)
  8. }