checkDomainErr();
checkDomainOut();
thisNode.start();
// Run the client test code.
TestService tester = ((SCAClient)thisNode).getService(TestService.class, "MyClientComponent/TestService");
tester.runTest();
otherNode.checkNodeErr();
otherNode.checkNodeOut();
System.out.println("Sleeping ...");
Thread.sleep(4000);
otherNode.checkNodeErr();
otherNode.checkNodeOut();
assertEquals("-> someMethod -> receiveResult", tester.getResult());
// Stop the client node.
thisNode.stop();
// Stop the test nodes.