package zone import ( "testing" ) func TestZone(t *testing.T) { txt := []string{"Info text"} zone, err := New("instance", "_foo._bar", "", "", 8000, nil, txt) if err != nil { t.Fatal(err) } t.Log(zone) }