Map<String, Forward> forwards = reader.getGlobalHTMLForwards();
assertTrue(forwards.size() == 3);
Forward forward = forwards.get("xx1"); //$NON-NLS-1$
ForwardProxy proxy = new ForwardProxy(forward);
assertFalse(proxy.isEventType());
assertEquals(forward.getName(), "xx1"); //$NON-NLS-1$
assertEquals(forward.getType(), ForwardType.HTMLRESOURCE);
assertEquals(forward.getPath(), "xxxpath1"); //$NON-NLS-1$
forward = forwards.get("xx2"); //$NON-NLS-1$
proxy = new ForwardProxy(forward);
assertTrue(proxy.isEventType());
assertEquals(forward.getName(), "xx2"); //$NON-NLS-1$
assertEquals(forward.getType(), ForwardType.EVENT);
assertEquals(forward.getPath(), "xxxpath2"); //$NON-NLS-1$
forward = forwards.get("xx3"); //$NON-NLS-1$
proxy = new ForwardProxy(forward);
assertFalse(proxy.isEventType());
assertEquals(forward.getName(), "xx3"); //$NON-NLS-1$
assertEquals(forward.getType(), ForwardType.HTMLRESOURCE);
assertEquals(forward.getPath(), "xxxpath3"); //$NON-NLS-1$
}