5253545556575859606162
new MainHelloWorldClient() ); // Connect to the service server._startAndWaitUp( 4000 ); user u = new user(5, "User"); System.out.println(server.say_hello(u)); // Disconnect from the service server._stopAndWaitDown( 4000 ); }
119120121122123124125126127
* @throws Exception */ @Test public void testSayHello() throws Exception { user u = new user(5, "Test"); String result = server.say_hello(u); Assert.assertTrue(result.equals("Hello Test")); }
5152535455565758596061