mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
ce77cb81df
// FREEBIE
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();
|
|
}
|
|
}
|