private ViewConfigStore store;
@Test
public void testViewConfigStore() {
store.addAnnotationData("/*", new IconLiteral("default.gif"));
store.addAnnotationData("/sad/*", new IconLiteral("sad.gif"));
store.addAnnotationData("/happy/*", new IconLiteral("happy.gif"));
store.addAnnotationData("/happy/done.xhtml", new IconLiteral("finished.gif"));
Icon data;
data = store.getAnnotationData("/happy/done.xhtml", Icon.class);
Assert.assertEquals("finished.gif", data.value());
data = store.getAnnotationData("/happy/other.xhtml", Icon.class);