assertNotNull("Should have found some auto-generated HTML", html);
}
@Test
public void testComponentJsonSchema() throws Exception {
CamelContext context = new DefaultCamelContext();
String json = context.getComponentParameterJsonSchema("direct");
assertNotNull("Should have found some auto-generated JSON", json);
log.info(json);
// should include javadoc
assertTrue("Should include javadoc", json.contains("\"timeout\": { \"type\": \"integer\", \"javaType\": \"long\","