(t *testing.T, hs serverHandshake, done chan AuthInfo)
| 220 | } |
| 221 | |
| 222 | func launchServer(t *testing.T, hs serverHandshake, done chan AuthInfo) net.Listener { |
| 223 | return launchServerOnListenAddress(t, hs, done, "localhost:0") |
| 224 | } |
| 225 | |
| 226 | func launchServerOnListenAddress(t *testing.T, hs serverHandshake, done chan AuthInfo, address string) net.Listener { |
| 227 | lis, err := net.Listen("tcp", address) |
no test coverage detected