package admin; import gen.*; import http.gen.*; /** Test the Player Registration */ public class RegTest { public static void main(String[] args) throws Exception{ HTTPResp res = HTTPReq.Post("/register?password=ABCDE", ""+new PlayerSpec("Team Bryan","localhost", 9000)) .send("localhost", RegServer.PORT); System.out.println(" RESP:\n"+res); } }