And add an incredibly basic test

ugly-unit-test
Bradlee Speice 2014-05-24 02:13:35 -04:00
parent 2af187e429
commit bba77bb45a
1 changed files with 15 additions and 0 deletions

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);
}
}