(t *testing.T)
| 155 | } |
| 156 | |
| 157 | func TestASyncRPC(t *testing.T) { |
| 158 | |
| 159 | asyncRPC_Signal = NewSignalTester(t) |
| 160 | |
| 161 | rpc_StartServer() |
| 162 | |
| 163 | rpc_StartClient(asyncRPC_OnClientEvent) |
| 164 | asyncRPC_Signal.WaitAndExpect("async not recv data ", 1, 2) |
| 165 | |
| 166 | rpc_Acceptor.Stop() |
| 167 | } |
| 168 | |
| 169 | func TestTypeRPC(t *testing.T) { |
| 170 |
nothing calls this directly
no test coverage detected