Skip to content

Commit

Permalink
Ignore MTK integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gthea committed Aug 2, 2022
1 parent 339d18d commit 8cce95e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;

import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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 {

Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand All @@ -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();
Expand All @@ -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();
Expand Down

0 comments on commit 8cce95e

Please sign in to comment.