2013-12-24 00:58:41 -05:00
|
|
|
package iso
|
2013-06-05 23:40:39 -04:00
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func TestIfconfigIPFinder_Impl(t *testing.T) {
|
|
|
|
var raw interface{}
|
|
|
|
raw = &IfconfigIPFinder{}
|
|
|
|
if _, ok := raw.(HostIPFinder); !ok {
|
|
|
|
t.Fatalf("IfconfigIPFinder is not a host IP finder")
|
|
|
|
}
|
|
|
|
}
|