final String domain_fqdn = this.siteDisc.getFQDNHost(TestConfiguration.domain);
assertEquals(TestConfiguration.domain, domain_fqdn);
}
public final void testGetCurrentWebCrawlInfo() throws Exception {
WebCrawlInfo webCrawlInfo = siteDisc.getCurrentWebCrawlInfo();
assertNotNull(webCrawlInfo);
// Assuming the initial crawl URL will never be marked for NoCrawl.
assertFalse(webCrawlInfo.isNoCrawl());
}