@Test
 public void testOnNotFound() {
   String result = notFoundHistoryConverter.onNotFound();
   assertEquals("", result);
 }
 @Test
 public void testIsCrawlable() {
   Boolean result = notFoundHistoryConverter.isCrawlable();
   assertFalse(result);
 }