Refactor integration tests to allow clock to be replaced.

This commit is contained in:
akwizgran
2021-01-19 12:44:07 +00:00
committed by Torsten Grote
parent e10b6334f5
commit 5e2187a877
18 changed files with 141 additions and 100 deletions

View File

@@ -1,6 +1,7 @@
package org.briarproject.briar.android.logging;
import org.briarproject.bramble.BrambleCoreModule;
import org.briarproject.bramble.system.ClockModule;
import org.briarproject.bramble.test.TestSecureRandomModule;
import java.security.SecureRandom;
@@ -11,6 +12,7 @@ import dagger.Component;
@Singleton
@Component(modules = {
ClockModule.class,
BrambleCoreModule.class,
TestSecureRandomModule.class,
LoggingModule.class,