@@ -58,11 +58,6 @@ - (void)testAggregateQueryEquals {
58
58
}
59
59
60
60
- (void )testCanRunCountQuery {
61
- // TODO(b/246758022): Remove this (and below) once COUNT is release for the backend.
62
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
63
- return ;
64
- }
65
-
66
61
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
67
62
@" a" : @{@" k" : @" a" },
68
63
@" b" : @{@" k" : @" b" },
@@ -74,10 +69,6 @@ - (void)testCanRunCountQuery {
74
69
}
75
70
76
71
- (void )testCanRunCountWithFilters {
77
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
78
- return ;
79
- }
80
-
81
72
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
82
73
@" a" : @{@" k" : @" a" },
83
74
@" b" : @{@" k" : @" b" },
@@ -90,10 +81,6 @@ - (void)testCanRunCountWithFilters {
90
81
}
91
82
92
83
- (void )testCanRunCountWithOrderBys {
93
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
94
- return ;
95
- }
96
-
97
84
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
98
85
@" a" : @{@" k" : @" a" },
99
86
@" b" : @{@" k" : @" b" },
@@ -107,10 +94,6 @@ - (void)testCanRunCountWithOrderBys {
107
94
}
108
95
109
96
- (void )testSnapshotEquals {
110
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
111
- return ;
112
- }
113
-
114
97
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
115
98
@" a" : @{@" k" : @" a" },
116
99
@" b" : @{@" k" : @" b" },
@@ -149,10 +132,6 @@ - (void)testSnapshotEquals {
149
132
}
150
133
151
134
- (void )testTerminateDoesNotCrashWithFlyingCountQuery {
152
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
153
- return ;
154
- }
155
-
156
135
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
157
136
@" a" : @{@" k" : @" a" },
158
137
@" b" : @{@" k" : @" b" },
@@ -169,10 +148,6 @@ - (void)testTerminateDoesNotCrashWithFlyingCountQuery {
169
148
}
170
149
171
150
- (void )testCanRunCollectionGroupCountQuery {
172
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
173
- return ;
174
- }
175
-
176
151
NSString * collectionGroup =
177
152
[NSString stringWithFormat: @" %@%@ " , @" b" ,
178
153
[self .db collectionWithPath: @" foo" ].documentWithAutoID.documentID];
@@ -202,10 +177,6 @@ - (void)testCanRunCollectionGroupCountQuery {
202
177
}
203
178
204
179
- (void )testCanRunCountWithFiltersAndLimits {
205
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
206
- return ;
207
- }
208
-
209
180
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
210
181
@" a" : @{@" k" : @" a" },
211
182
@" b" : @{@" k" : @" a" },
@@ -230,10 +201,6 @@ - (void)testCanRunCountWithFiltersAndLimits {
230
201
}
231
202
232
203
- (void )testCanRunCountOnNonExistentCollection {
233
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
234
- return ;
235
- }
236
-
237
204
FIRCollectionReference* testCollection = [self collectionRef ];
238
205
239
206
FIRAggregateQuerySnapshot* snapshot = [self readSnapshotForAggregate: [testCollection count ]];
@@ -245,10 +212,6 @@ - (void)testCanRunCountOnNonExistentCollection {
245
212
}
246
213
247
214
- (void )testFailWithoutNetwork {
248
- if (![FSTIntegrationTestCase isRunningAgainstEmulator ]) {
249
- return ;
250
- }
251
-
252
215
FIRCollectionReference* testCollection = [self collectionRefWithDocuments: @{
253
216
@" a" : @{@" k" : @" a" },
254
217
@" b" : @{@" k" : @" b" },
0 commit comments