TesteeSet<YieldingGloballyExclusiveClusterLockSupport> testeeSet = getTesteeSet(node1, 1, 3);
YieldingGloballyExclusiveClusterLockSupport testee = testeeSet.impl;
LocalLockHandler handler = testee.getLocalHandler();
RpcTarget target = testeeSet.target;
ClusterNode caller1 = testee.getCurrentView().get(0);
assertFalse(node1.equals(caller1));
ClusterNode caller2 = testee.getCurrentView().get(2);
assertFalse(node1.equals(caller2));
RemoteLockResponse rsp = target.remoteLock("test", caller1, 1000);
verify(handler).lockFromCluster("test", caller1, 1000);