(t *testing.T, index int)
| 107 | } |
| 108 | |
| 109 | func runEcho(t *testing.T, index int) { |
| 110 | |
| 111 | ctx := echoContexts[index] |
| 112 | |
| 113 | ctx.Tester = NewSignalTester(t) |
| 114 | ctx.Tester.SetTimeout(time.Hour) |
| 115 | |
| 116 | echo_StartServer(ctx) |
| 117 | |
| 118 | echo_StartClient(ctx) |
| 119 | |
| 120 | ctx.Acceptor.Stop() |
| 121 | } |
| 122 | |
| 123 | func TestEchoTCP(t *testing.T) { |
| 124 |
no test coverage detected