}
@Test
public void test() throws Exception {
Test01 stub = new Test01Stub(UtilServer.getConfigurationContext(), "http://127.0.0.1:" + UtilServer.TESTING_PORT + "/axis2/services/Test01");
Add add = new Add();
add.setArg1(3);
add.setArg2(4);
assertEquals(7, stub.add(add));
}