(t *testing.T)
| 143 | } |
| 144 | |
| 145 | func TestSyncRPC(t *testing.T) { |
| 146 | |
| 147 | syncRPC_Signal = NewSignalTester(t) |
| 148 | |
| 149 | rpc_StartServer() |
| 150 | |
| 151 | rpc_StartClient(syncRPC_OnClientEvent) |
| 152 | syncRPC_Signal.WaitAndExpect("sync not recv data ", 100, 200) |
| 153 | |
| 154 | rpc_Acceptor.Stop() |
| 155 | } |
| 156 | |
| 157 | func TestASyncRPC(t *testing.T) { |
| 158 |
nothing calls this directly
no test coverage detected