mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 21:03:54 +01:00
Disable LeakCanary for Robolectric tests
See 'For Robolectric users:' https://github.com/square/leakcanary
This commit is contained in:
parent
10ac64d556
commit
e317c369c1
2 changed files with 21 additions and 6 deletions
|
|
@ -0,0 +1,11 @@
|
|||
package fr.free.nrw.commons;
|
||||
|
||||
import com.squareup.leakcanary.RefWatcher;
|
||||
|
||||
// This class is automatically discovered by Robolectric
|
||||
public class TestCommonsApplication extends CommonsApplication {
|
||||
@Override protected RefWatcher setupLeakCanary() {
|
||||
// No leakcanary in unit tests.
|
||||
return RefWatcher.DISABLED;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue