(s ...string)
| 45 | } |
| 46 | |
| 47 | func eps(s ...string) []netip.AddrPort { |
| 48 | var eps []netip.AddrPort |
| 49 | for _, ep := range s { |
| 50 | eps = append(eps, netip.MustParseAddrPort(ep)) |
| 51 | } |
| 52 | return eps |
| 53 | } |
| 54 | |
| 55 | func TestNetworkMapConcise(t *testing.T) { |
| 56 | for _, tt := range []struct { |
no outgoing calls
no test coverage detected