@@ -82,7 +82,7 @@ protected override void Start() {
82
82
// non-static.
83
83
Func < Task > [ ] tests = {
84
84
// clang-format off
85
- TestDeleteDocument ,
85
+ /* TestDeleteDocument,
86
86
TestWriteDocument,
87
87
TestWriteDocumentViaCollection,
88
88
TestWriteDocumentWithIntegers,
@@ -119,9 +119,13 @@ protected override void Start() {
119
119
TestDocumentListenWithMetadataChanges,
120
120
TestQueryListen,
121
121
TestQueryListenWithMetadataChanges,
122
- TestQuerySnapshotChanges ,
122
+ TestQuerySnapshotChanges,*/
123
123
TestQueries ,
124
- TestLimitToLast ,
124
+ TestQueries ,
125
+ TestQueries ,
126
+ TestQueries ,
127
+ TestQueries ,
128
+ /*TestLimitToLast,
125
129
TestArrayContains,
126
130
TestArrayContainsAny,
127
131
TestInQueries,
@@ -156,7 +160,7 @@ protected override void Start() {
156
160
TestFirestoreDispose,
157
161
TestFirestoreGetInstance,
158
162
TestWhereFilterQueries,
159
- TestAndOrQueriesNoCompositeIndexes
163
+ TestAndOrQueriesNoCompositeIndexes*/
160
164
// clang-format on
161
165
} ;
162
166
@@ -4680,18 +4684,16 @@ private void AssertQueryResults(string desc, Query query, List<string> docIds) {
4680
4684
private void AssertQueryResults ( string desc , Query query , List < string > docIds , long count ) {
4681
4685
var snapshot = Await ( query . GetSnapshotAsync ( ) ) ;
4682
4686
4683
- if ( docIds . Count != count ) {
4684
- UnityEngine . Debug . Log ( "=-=-= WTF!!!" ) ;
4685
- }
4687
+ string s = "" ;
4686
4688
4687
4689
if ( snapshot . Count != docIds . Count ) {
4688
- UnityEngine . Debug . Log ( "===== Got a snapshot for " + desc + ". Count: " + snapshot . Count + " expected: " + count ) ;
4690
+ s += " Got a snapshot for " + desc + ". Count: " + snapshot . Count + " expected: " + count ;
4689
4691
for ( int i = 0 ; i < snapshot . Count ; i ++ ) {
4690
- UnityEngine . Debug . Log ( "===== snapshot[" + i + "]: " + snapshot [ i ] . Id ) ;
4692
+ s += " snapshot[" + i + "]: " + snapshot [ i ] . Id ;
4691
4693
}
4692
4694
}
4693
4695
4694
- AssertEq ( desc + ": Query result count" , snapshot . Count , docIds . Count ) ;
4696
+ AssertEq ( desc + ": Query result count " + s , snapshot . Count , docIds . Count ) ;
4695
4697
for ( int i = 0 ; i < snapshot . Count ; i ++ ) {
4696
4698
AssertEq ( desc + ": Document ID " + i , docIds [ i ] , snapshot [ i ] . Id ) ;
4697
4699
}
0 commit comments