And add an incredibly basic test

This commit is contained in:
Bradlee Speice 2014-05-24 02:13:35 -04:00
parent 2af187e429
commit bba77bb45a

View File

@ -0,0 +1,15 @@
package org.bspeice.minimalbible.test;
import android.test.InstrumentationTestCase;
import android.test.suitebuilder.annotation.SmallTest;
/**
* Tests for the Download activity
*/
public class DownloadActivityTest extends InstrumentationTestCase {
public void testBasicAssertion() {
assertEquals(true, true);
}
}