( t *testing.T, listen string, passwords map[string][]byte, pubKeys map[string]string, )
| 506 | } |
| 507 | |
| 508 | func newServerHelper( |
| 509 | t *testing.T, |
| 510 | listen string, |
| 511 | passwords map[string][]byte, |
| 512 | pubKeys map[string]string, |
| 513 | ) *serverHelper { |
| 514 | return &serverHelper{ |
| 515 | t: t, |
| 516 | listen: listen, |
| 517 | passwords: passwords, |
| 518 | pubKeys: pubKeys, |
| 519 | receivedChannel: make(chan struct{}, 1), |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | type serverHelper struct { |
| 524 | t *testing.T |
no outgoing calls
no test coverage detected