public bool doTest() { ReqDisplay.message("============================================================="); ReqDisplay.title("Requirement #4 & #5:The Server packages shall conduct Dependency and Strong Connected Component analysis"); ReqDisplay.message("Send request for dependency analysis from auto client and display result on GUI client"); ReqDisplay.message("-------------------------------------------------------------"); AutoClient autoClient = new AutoClient(port); autoClient.sendDep(); ReqDisplay.message("Send request for SCC analysis from auto client and display result on GUI client"); ReqDisplay.message("-------------------------------------------------------------"); autoClient.sendScc(); autoClient.shutDown(); return(result); }