We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475b718 commit eb416dbCopy full SHA for eb416db
firebase-firestore/src/androidTest/java/com/google/firebase/firestore/CountTest.java
@@ -30,12 +30,19 @@
30
import androidx.test.ext.junit.runners.AndroidJUnit4;
31
import com.google.firebase.firestore.testutil.IntegrationTestUtil;
32
import org.junit.After;
33
+import org.junit.Before;
34
import org.junit.Test;
35
import org.junit.runner.RunWith;
36
37
@RunWith(AndroidJUnit4.class)
38
public class CountTest {
39
40
+ @Before
41
+ public void setUp() {
42
+ // TODO(b/243368243): Remove this once backend is ready to support count.
43
+ org.junit.Assume.assumeTrue(BuildConfig.USE_EMULATOR_FOR_TESTS);
44
+ }
45
+
46
@After
47
public void tearDown() {
48
IntegrationTestUtil.tearDown();
0 commit comments