public void testNotificationHandling() throws Exception {
ServerCore core = new ServerCore(conf);
TestNotificationHandlingHistory history = new TestNotificationHandlingHistory();
core.init(new EmptyServerLogReader(), history, new EmptyServerDispatcher(),
new EmptyServerHandler());
NamespaceEvent event1 = new NamespaceEvent("/a",
EventType.FILE_ADDED.getByteValue());
NamespaceEvent event2 = new NamespaceEvent("/b",
EventType.FILE_ADDED.getByteValue());
NamespaceEvent event3 = new NamespaceEvent("/c",
EventType.FILE_ADDED.getByteValue());
long txIdCount = 10;
long id1 = 1000, id2 = 2000;
EmptyClientHandler handler1 = new EmptyClientHandler(),
handler2 = new EmptyClientHandler();