2015-01-12 11:34:36 -10:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.test.InstrumentationTestCase;
|
|
|
|
|
|
|
|
public class TextSecureTestCase extends InstrumentationTestCase {
|
|
|
|
|
|
|
|
@Override
|
2016-11-03 17:36:45 +01:00
|
|
|
public void setUp() {
|
2015-01-12 11:34:36 -10:00
|
|
|
System.setProperty("dexmaker.dexcache", getInstrumentation().getTargetContext().getCacheDir().getPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected Context getContext() {
|
|
|
|
return getInstrumentation().getContext();
|
|
|
|
}
|
|
|
|
}
|