Fqn fqn = Fqn.fromString(fqn4);
Object key = "key";
MethodCall mc = MethodCallFactory.create(MethodDeclarations.getKeyValueMethodLocal, new Object[]{fqn, key, Boolean.FALSE});
interceptor.invoke(mc);
Region region = regionManager.getRegion(fqn.toString());
assertNull(region.takeLastEventNode());
// add the node but try to get on a null element should result in no cache events being added to Region.
cache.put(fqn, "wrongkey", "");
mc = MethodCallFactory.create(MethodDeclarations.getKeyValueMethodLocal, new Object[]{fqn, key, Boolean.FALSE});
interceptor.invoke(mc);