diff --git a/src/androidTest/java/tests/integration/shared/SharedClientsIntegrationTest.java b/src/androidTest/java/tests/integration/shared/SharedClientsIntegrationTest.java index 0a0d349d5..8d5927b13 100644 --- a/src/androidTest/java/tests/integration/shared/SharedClientsIntegrationTest.java +++ b/src/androidTest/java/tests/integration/shared/SharedClientsIntegrationTest.java @@ -9,7 +9,6 @@ import org.junit.After; import org.junit.Before; -import org.junit.Rule; import org.junit.Test; import java.util.ArrayList; diff --git a/src/androidTest/java/tests/service/UniqueKeysIntegrationTest.java b/src/androidTest/java/tests/service/UniqueKeysIntegrationTest.java index 48aa465df..43c591ffd 100644 --- a/src/androidTest/java/tests/service/UniqueKeysIntegrationTest.java +++ b/src/androidTest/java/tests/service/UniqueKeysIntegrationTest.java @@ -9,6 +9,7 @@ import androidx.test.platform.app.InstrumentationRegistry; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import java.io.IOException; @@ -24,7 +25,6 @@ import helper.DatabaseHelper; import helper.IntegrationHelper; import helper.TestableSplitConfigBuilder; -import helper.TestingHelper; import io.split.android.client.SplitClient; import io.split.android.client.SplitClientConfig; import io.split.android.client.SplitFactory; @@ -33,6 +33,7 @@ import io.split.android.client.storage.db.SplitRoomDatabase; import io.split.android.client.storage.db.impressions.unique.UniqueKeyEntity; import io.split.android.client.utils.logger.Logger; +import tests.integration.shared.TestingHelper; public class UniqueKeysIntegrationTest { @@ -68,6 +69,7 @@ public void setUp() throws IOException { mUniqueKeysBody.set(""); } + @Ignore("Ignored until MTK is enabled") @Test public void verifyRequestBody() throws InterruptedException { SplitClient client = mSplitFactory.client(); @@ -100,6 +102,7 @@ public void verifyRequestBody() throws InterruptedException { client2.destroy(); } + @Ignore("Ignored until MTK is enabled") @Test public void verifyKeyFeaturesAreMerged() throws InterruptedException { SplitClient client = mSplitFactory.client(); @@ -123,6 +126,7 @@ public void verifyKeyFeaturesAreMerged() throws InterruptedException { client.destroy(); } + @Ignore("Ignored until MTK is enabled") @Test public void retryIsPerformed() throws InterruptedException { SplitClient client = mSplitFactory.client(); @@ -145,6 +149,7 @@ public void retryIsPerformed() throws InterruptedException { client.destroy(); } + @Ignore("Ignored until MTK is enabled") @Test public void verifyDatabaseIsEmptyAfterRequest() throws InterruptedException { SplitClient client = mSplitFactory.client();