blob: fd9d4e7907266ddc34a9ffa78d00d28baa315b09 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:go_router/src/go_route_information_provider.dart';
const RouteInformation initialRoute = RouteInformation(location: '/');
const RouteInformation newRoute = RouteInformation(location: '/new');
void main() {
group('GoRouteInformationProvider', () {
testWidgets('notifies its listeners when set by the app',
(WidgetTester tester) async {
late final GoRouteInformationProvider provider =
GoRouteInformationProvider(initialRouteInformation: initialRoute);
provider.addListener(expectAsync0(() {}));
provider.value = newRoute;
});
testWidgets('notifies its listeners when set by the platform',
(WidgetTester tester) async {
late final GoRouteInformationProvider provider =
GoRouteInformationProvider(initialRouteInformation: initialRoute);
provider.addListener(expectAsync0(() {}));
provider.didPushRouteInformation(newRoute);
});
});
}