flutter/examples/api/test/material/scaffold/scaffold.of.0_test.dart
Kostia Sokolovskyi 538625ad38
Add tests for scaffold.of.#.dart API examples. (#147637)
This PR contributes to https://github.com/flutter/flutter/issues/130459

### Description
- Adds tests for `examples/api/lib/material/scaffold/scaffold.of.0.dart`
- Adds tests for `examples/api/lib/material/scaffold/scaffold.of.1.dart`
2024-05-20 08:02:09 +00:00

68 lines
1.9 KiB
Dart

// Copyright 2014 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/material.dart';
import 'package:flutter_api_samples/material/scaffold/scaffold.of.0.dart'
as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('Verify correct labels are displayed', (WidgetTester tester) async {
await tester.pumpWidget(
const example.OfExampleApp(),
);
expect(find.text('Scaffold.of Example'), findsOneWidget);
expect(find.text('SHOW BOTTOM SHEET'), findsOneWidget);
});
testWidgets('Bottom sheet can be shown', (WidgetTester tester) async {
await tester.pumpWidget(
const example.OfExampleApp(),
);
expect(find.text('BottomSheet'), findsNothing);
expect(
find.widgetWithText(ElevatedButton, 'Close BottomSheet'),
findsNothing,
);
// Tap the button to show the bottom sheet.
await tester.tap(
find.widgetWithText(ElevatedButton, 'SHOW BOTTOM SHEET'),
);
await tester.pumpAndSettle();
expect(find.text('BottomSheet'), findsOneWidget);
expect(
find.widgetWithText(ElevatedButton, 'Close BottomSheet'),
findsOneWidget,
);
});
testWidgets('Bottom sheet can be closed', (WidgetTester tester) async {
await tester.pumpWidget(
const example.OfExampleApp(),
);
expect(find.text('BottomSheet'), findsNothing);
// Tap the button to show the bottom sheet.
await tester.tap(
find.widgetWithText(ElevatedButton, 'SHOW BOTTOM SHEET'),
);
await tester.pumpAndSettle();
expect(find.text('BottomSheet'), findsOneWidget);
// Tap the button to close the bottom sheet.
await tester.tap(
find.widgetWithText(ElevatedButton, 'Close BottomSheet'),
);
await tester.pumpAndSettle();
expect(find.text('BottomSheet'), findsNothing);
});
}