mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
// Copyright 2020 The Flutter team. 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/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:provider_shopper/main.dart';
|
|
import 'package:provider_shopper/models/cart.dart';
|
|
import 'package:provider_shopper/models/catalog.dart';
|
|
|
|
void main() {
|
|
testWidgets('Login page Widget test', (tester) async {
|
|
await tester.pumpWidget(MultiProvider(
|
|
providers: [
|
|
Provider(create: (context) => CatalogModel()),
|
|
ChangeNotifierProxyProvider<CatalogModel, CartModel>(
|
|
create: (context) => CartModel(),
|
|
update: (context, catalog, cart) {
|
|
cart!.catalog = catalog;
|
|
return cart;
|
|
},
|
|
),
|
|
],
|
|
child: MaterialApp.router(routerConfig: router()),
|
|
));
|
|
|
|
// Verifying the behaviour of ENTER button.
|
|
await tester.tap(find.text('ENTER'));
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(find.text('Catalog'), findsOneWidget);
|
|
});
|
|
}
|