core tests fix: ensure running test suite (gradlew connectedAndroidTest)

include all test. The existing config does not include the tests
in feed/ directory.
This commit is contained in:
orionlee 2018-05-17 14:23:07 -07:00
parent ed4b7dd96f
commit 7dd4e5caa1
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ android {
versionCode 1
versionName "1.0"
testApplicationId "de.danoeh.antennapod.core.tests"
testInstrumentationRunner "de.danoeh.antennapod.core.tests.AntennaPodTestRunner"
testInstrumentationRunner "de.danoeh.antennapod.core.AntennaPodTestRunner"
}
buildTypes {
release {

View File

@ -1,4 +1,4 @@
package de.danoeh.antennapod.core.tests;
package de.danoeh.antennapod.core;
import android.test.InstrumentationTestRunner;
import android.test.suitebuilder.TestSuiteBuilder;