mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-22 07:58:20 -05:00
Get the tests fixed up for the exclude list
This commit is contained in:
parent
ef314efa2f
commit
3ce6cad2c2
@ -25,7 +25,9 @@ import org.junit.Ignore;
|
|||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.mockito.Mockito;
|
import org.mockito.Mockito;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
import java.util.List;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
|
||||||
@ -235,6 +237,11 @@ public class BookManagerTest implements Injector {
|
|||||||
return new InstallManager().getInstallers().values();
|
return new InstallManager().getInstallers().values();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
List<String> excludeList() {
|
||||||
|
return new ArrayList<>();
|
||||||
|
}
|
||||||
|
|
||||||
void setConnectivityManager(ConnectivityManager manager) {
|
void setConnectivityManager(ConnectivityManager manager) {
|
||||||
this.manager = manager;
|
this.manager = manager;
|
||||||
}
|
}
|
||||||
@ -245,8 +252,8 @@ public class BookManagerTest implements Injector {
|
|||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
RefreshManager refreshManager(Collection<Installer> installers) {
|
RefreshManager refreshManager(Collection<Installer> installers, List<String> excludes) {
|
||||||
return new RefreshManager(installers,
|
return new RefreshManager(installers, excludes,
|
||||||
prefs, manager);
|
prefs, manager);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,10 +189,15 @@ public class RefreshManagerTest implements Injector {
|
|||||||
this.prefs = prefs;
|
this.prefs = prefs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
List<String> excludeList() {
|
||||||
|
return new ArrayList<>();
|
||||||
|
}
|
||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
RefreshManager refreshManager(Collection<Installer> installers) {
|
RefreshManager refreshManager(Collection<Installer> installers, List<String> excludes) {
|
||||||
return new RefreshManager(installers,
|
return new RefreshManager(installers, excludes,
|
||||||
prefs, manager);
|
prefs, manager);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user