diff --git a/MinimalBible/build.gradle b/MinimalBible/build.gradle index e016852..390a785 100644 --- a/MinimalBible/build.gradle +++ b/MinimalBible/build.gradle @@ -57,7 +57,7 @@ android { } // Move the tests to tests/java, tests/res, etc... - instrumentTest.setRoot('src/test') + androidTest.setRoot('src/test') // Move the build types to build-types/ // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ... diff --git a/MinimalBible/src/test/org/bspeice/minimalbible/test/DownloadActivityTest.java b/MinimalBible/src/test/org/bspeice/minimalbible/test/DownloadActivityTest.java deleted file mode 100644 index a719601..0000000 --- a/MinimalBible/src/test/org/bspeice/minimalbible/test/DownloadActivityTest.java +++ /dev/null @@ -1,20 +0,0 @@ -package test.org.bspeice.minimalbible.test; - -import android.test.InstrumentationTestCase; - -/** - * Tests for the Download activity - */ -public class DownloadActivityTest extends InstrumentationTestCase { - - /** - * For whatever reason, when we create one ProgressWheel with ButterKnife, multiple - * others are shown as well... - */ - public void testOnlyOneProgressWheelShown() { - - - - } - -}