move androidTest/ into new test/ directory

// FREEBIE
This commit is contained in:
Rhodey Orbits
2015-05-25 14:56:15 -07:00
committed by Moxie Marlinspike
parent 4dce95142f
commit ce77cb81df
10 changed files with 1 additions and 4 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() throws Exception {
System.setProperty("dexmaker.dexcache", getInstrumentation().getTargetContext().getCacheDir().getPath());
}
protected Context getContext() {
return getInstrumentation().getContext();
}
}