use of org.eclipse.ecf.tests.remoteservice.IConcatService in project ecf by eclipse.
the class SSLSimpleTest method testSimpleClientAndServerWithProxy.
public void testSimpleClientAndServerWithProxy() throws Exception {
IRemoteService remoteService = client.getRemoteService();
assertNotNull(remoteService);
// Use proxy
String result = ((IConcatService) remoteService.getProxy()).concat(TEST_STRING_1, TEST_STRING_2);
assertTrue(result != null && result.equals(TEST_STRING_1 + TEST_STRING_2));
}
Aggregations