public void testHtml() throws Exception {
   ClasspathWidget widget = new ClasspathWidget(new MockWidgetRoot(), "!path some.path");
   Pattern p = Pattern.compile("classpath: some.path");
   Matcher match = p.matcher(widget.render());
   assertTrue("pattern not found", match.find());
 }