use of org.nzbhydra.config.SearchingConfig in project nzbhydra2 by theotherp.
the class DuplicateDetectorTest method setUp.
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
BaseConfig baseConfig = new BaseConfig();
baseConfig.setSearching(new SearchingConfig());
baseConfig.getSearching().setDuplicateSizeThresholdInPercent(1F);
baseConfig.getSearching().setDuplicateAgeThreshold(2F);
when(configProviderMock.getBaseConfig()).thenReturn(baseConfig);
}
use of org.nzbhydra.config.SearchingConfig in project nzbhydra2 by theotherp.
the class NzbsOrgTest method setUp.
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
BaseConfig baseConfig = new BaseConfig();
baseConfig.setSearching(new SearchingConfig());
when(configProviderMock.getBaseConfig()).thenReturn(baseConfig);
}
Aggregations