mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
I got carried away with Gemini and basically rewrote CI and the release process for the new LLM reality. This work was largely completed by Gemini. - Bump all SDK versions to the current beta (3.9.0-0) - Run `flutter channel beta` - Wrote `ci_script.dart` to replace the bash scripts - Converted repository to pub workspace #2499 - Added llm.md and release.md - Added redirect for deprecated Samples Index ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I have added sample code updates to the [changelog]. - [x] I updated/added relevant documentation (doc comments with `///`).
49 lines
1.4 KiB
Dart
49 lines
1.4 KiB
Dart
// 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:integration_test/integration_test.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:testing_app/models/favorites.dart';
|
|
import 'package:testing_app/screens/favorites.dart';
|
|
|
|
late Favorites favoritesList;
|
|
|
|
Widget createFavoritesScreen() => ChangeNotifierProvider<Favorites>(
|
|
create: (context) {
|
|
favoritesList = Favorites();
|
|
return favoritesList;
|
|
},
|
|
child: const MaterialApp(home: FavoritesPage()),
|
|
);
|
|
|
|
void main() {
|
|
group('Testing App State Management Tests', () {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
testWidgets('Verifying add method', (tester) async {
|
|
await tester.pumpWidget(createFavoritesScreen());
|
|
|
|
// Add an item to the list.
|
|
favoritesList.add(30);
|
|
await tester.pumpAndSettle();
|
|
|
|
// Check if the new item appears in the list.
|
|
expect(find.text('Item 30'), findsOneWidget);
|
|
});
|
|
|
|
testWidgets('Verifying remove method', (tester) async {
|
|
await tester.pumpWidget(createFavoritesScreen());
|
|
|
|
// Remove an item from the list.
|
|
favoritesList.remove(30);
|
|
await tester.pumpAndSettle();
|
|
|
|
// Verify if it disappears.
|
|
expect(find.text('Item 30'), findsNothing);
|
|
});
|
|
});
|
|
}
|