(String[] args)
| 3 | |
| 4 | public class Program { |
| 5 | public synchronized static void main(String[] args) throws Exception { |
| 6 | App.getInstance().Start("127.0.0.1", 10000); |
| 7 | App.getInstance().ClientGame_Login.auth(); |
| 8 | try { |
| 9 | var role = App.getInstance().ClientGame_Login.getOrCreateRole("HotTestRole"); |
| 10 | App.getInstance().Zeze_Builtin_Game_Online.login(role.getId()); |
| 11 | App.getInstance().ClientGame_Equip.reportLogin(role.getId()); |
| 12 | App.getInstance().ClientGame_Equip.startTimer(); |
| 13 | Program.class.wait(); |
| 14 | } finally { |
| 15 | App.getInstance().Stop(); |
| 16 | } |
| 17 | } |
| 18 | } |
nothing calls this directly
no test coverage detected