Skip to content

Commit ea7db42

Browse files
committed
tests: update with notification accessors
1 parent bea7231 commit ea7db42

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

test/js_notifications_test.dart

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,30 @@ class MockJsNotificationsPlatform
8989
set scopeUrl(String value) {
9090
// TODO: implement scopeUrl
9191
}
92+
93+
@override
94+
Future<void> dispose() {
95+
// TODO: implement dispose
96+
throw UnimplementedError();
97+
}
98+
99+
@override
100+
Future<List<JSNotification>> getAllNotifications() {
101+
// TODO: implement getAllNotifications
102+
throw UnimplementedError();
103+
}
104+
105+
@override
106+
Future<JSNotification?> getNotification(String tag) {
107+
// TODO: implement getNotification
108+
throw UnimplementedError();
109+
}
110+
111+
@override
112+
Future<List<String>> getNotificationTags() {
113+
// TODO: implement getNotificationTags
114+
throw UnimplementedError();
115+
}
92116
}
93117

94118
void main() {

0 commit comments

Comments
 (0)