+QueryObserver

+Query
+notifyManager
+onlineManager
+QueryCache
This commit is contained in:
Kingkor Roy Tirtho
2022-02-10 18:29:42 +06:00
parent f1415f55f4
commit 3ec81de606
51 changed files with 2503 additions and 4083 deletions
@@ -344,7 +344,7 @@ void main() {
);
expect(
r.exception!.linkException!.originalException,
r.exception!.exception!.originalException,
e,
);
});
@@ -365,7 +365,7 @@ void main() {
);
expect(
r.exception!.linkException!.originalException,
r.exception!.exception!.originalException,
e,
);
});
@@ -743,7 +743,7 @@ void main() {
emitsInOrder(
[
isA<QueryResult>().having(
(result) => result.exception!.linkException,
(result) => result.exception!.exception,
'wrapped exception',
ex,
),
@@ -778,7 +778,7 @@ void main() {
emitsInOrder(
[
isA<QueryResult>().having(
(result) => result.exception!.linkException!.originalException,
(result) => result.exception!.exception!.originalException,
'wrapped exception',
err,
),