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:
parent
ed4b7dd96f
commit
7dd4e5caa1
|
@ -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 {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package de.danoeh.antennapod.core.tests;
|
||||
package de.danoeh.antennapod.core;
|
||||
|
||||
import android.test.InstrumentationTestRunner;
|
||||
import android.test.suitebuilder.TestSuiteBuilder;
|
Loading…
Reference in New Issue