Skip to content

Commit

Permalink
CARROT-1160: Nightlies fail on Bing5 news source.
Browse files Browse the repository at this point in the history
  • Loading branch information
dweiss committed Nov 30, 2016
1 parent 4427808 commit b2155a4
Showing 1 changed file with 17 additions and 0 deletions.
Expand Up @@ -12,6 +12,8 @@

package org.carrot2.source.microsoft.v5;

import java.util.concurrent.ExecutionException;

import org.carrot2.core.test.MultipageDocumentSourceTestBase;
import org.carrot2.source.MultipageSearchEngineMetadata;
import org.carrot2.util.tests.UsesExternalServices;
Expand All @@ -33,6 +35,21 @@ public Class<Bing5NewsDocumentSource> getComponentClass() {
protected MultipageSearchEngineMetadata getSearchEngineMetadata() {
return Bing5NewsDocumentSource.METADATA;
}

@Override
public void testInCachingController() throws InterruptedException, ExecutionException {
super.testInCachingController();
}

@Override
protected String getSmallQueryText() {
return "usa";
}

@Override
protected boolean canReturnMoreResultsThanRequested() {
return true;
}

@Override
protected boolean hasUtfResults() {
Expand Down

0 comments on commit b2155a4

Please sign in to comment.