(ClientGame.App app, long roleId)
| 384 | } |
| 385 | |
| 386 | private static void relogin(ClientGame.App app, long roleId) { |
| 387 | var relogin = new Zeze.Builtin.Game.Online.ReLogin(); |
| 388 | relogin.Argument.setRoleId(roleId); |
| 389 | relogin.SendForWait(app.ClientService.GetSocket(), 30_000).await(); |
| 390 | Assert.assertEquals(0, relogin.getResultCode()); |
| 391 | } |
| 392 | |
| 393 | private static void logout(ClientGame.App app, long roleIdForLogOnly) { |
| 394 | var logout = new Zeze.Builtin.Game.Online.Logout(); |
nothing calls this directly
no test coverage detected