mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
17 lines
437 B
Java
17 lines
437 B
Java
|
package org.thoughtcrime.securesms;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.test.InstrumentationTestCase;
|
||
|
|
||
|
public class TextSecureTestCase extends InstrumentationTestCase {
|
||
|
|
||
|
@Override
|
||
|
public void setUp() throws Exception {
|
||
|
System.setProperty("dexmaker.dexcache", getInstrumentation().getTargetContext().getCacheDir().getPath());
|
||
|
}
|
||
|
|
||
|
protected Context getContext() {
|
||
|
return getInstrumentation().getContext();
|
||
|
}
|
||
|
}
|