Core app files moved under the "messenger" module.

This commit is contained in:
Anton Chekulaev
2020-11-24 13:10:39 +11:00
parent 32bb707fa3
commit 9052431bf8
3421 changed files with 296786 additions and 296781 deletions

View File

@@ -0,0 +1,16 @@
package org.thoughtcrime.securesms;
import android.content.Context;
import android.test.InstrumentationTestCase;
public class TextSecureTestCase extends InstrumentationTestCase {
@Override
public void setUp() {
System.setProperty("dexmaker.dexcache", getInstrumentation().getTargetContext().getCacheDir().getPath());
}
protected Context getContext() {
return getInstrumentation().getContext();
}
}