String path = "/some/path";
String nuggetsPath = "/var/nuggets";
PersistingJcrEventReplicationTrigger persistingJcrEventReplicationTrigger = new PersistingJcrEventReplicationTrigger(
repository, path, serviceName, nuggetsPath);
Event event = mock(Event.class);
ReplicationRequest replicationRequest = persistingJcrEventReplicationTrigger.processEvent(event);
assertNull(replicationRequest);
}