#121 move tests out of tests package as only they were getting picked up by ci?

This commit is contained in:
Sean Mac Gillicuddy 2019-07-31 14:52:59 +01:00
parent 896929a728
commit 6a352fe2c3
10 changed files with 11 additions and 13 deletions

View File

@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kiwix.kiwixmobile.tests;
package org.kiwix.kiwixmobile;
import android.Manifest;
import androidx.test.filters.LargeTest;

View File

@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kiwix.kiwixmobile.tests;
package org.kiwix.kiwixmobile;
import androidx.test.filters.LargeTest;
import androidx.test.rule.ActivityTestRule;

View File

@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kiwix.kiwixmobile.tests;
package org.kiwix.kiwixmobile;
import android.Manifest;
import android.util.Log;

View File

@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kiwix.kiwixmobile.tests;
package org.kiwix.kiwixmobile;
import android.Manifest;
import android.util.Log;
@ -34,8 +34,6 @@ import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.kiwix.kiwixmobile.KiwixApplication;
import org.kiwix.kiwixmobile.R;
import org.kiwix.kiwixmobile.data.ZimContentProvider;
import org.kiwix.kiwixmobile.di.components.DaggerTestComponent;
import org.kiwix.kiwixmobile.di.components.TestComponent;

View File

@ -1,4 +1,4 @@
package org.kiwix.kiwixmobile.tests;
package org.kiwix.kiwixmobile;
import android.preference.Preference;
import androidx.test.filters.LargeTest;

View File

@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kiwix.kiwixmobile.tests;
package org.kiwix.kiwixmobile;
//@LargeTest
//@RunWith(AndroidJUnit4.class)

View File

@ -1,4 +1,4 @@
package org.kiwix.kiwixmobile.tests.activities;
package org.kiwix.kiwixmobile.activities;
import android.Manifest;
import androidx.test.filters.LargeTest;

View File

@ -1,4 +1,4 @@
package org.kiwix.kiwixmobile.tests.activities;
package org.kiwix.kiwixmobile.activities;
import android.Manifest;
import androidx.test.filters.LargeTest;

View File

@ -15,4 +15,4 @@
* Activity)
*/
package org.kiwix.kiwixmobile.tests.activities;
package org.kiwix.kiwixmobile.activities;

View File

@ -24,8 +24,8 @@ import org.kiwix.kiwixmobile.data.DataModule
import org.kiwix.kiwixmobile.di.modules.ApplicationModule
import org.kiwix.kiwixmobile.di.modules.JNIModule
import org.kiwix.kiwixmobile.di.modules.TestNetworkModule
import org.kiwix.kiwixmobile.tests.NetworkTest
import org.kiwix.kiwixmobile.tests.ZimTest
import org.kiwix.kiwixmobile.NetworkTest
import org.kiwix.kiwixmobile.ZimTest
import javax.inject.Singleton
/**