@Test public void testComponentDocumentation() throws Exception { // cannot be tested on java 1.6 if (isJavaVersion("1.6")) { return; } CamelContext context = new DefaultCamelContext(); String html = context.getComponentDocumentation("test"); assertNotNull("Should have found some auto-generated HTML if on Java 7", html); }
@Test public void testComponentDocumentation() throws Exception { CamelContext context = new DefaultCamelContext(); String html = context.getComponentDocumentation("timer"); assertNotNull("Should have found some auto-generated HTML if on Java 7", html); }