flutter/examples/api/test/material/scaffold/scaffold_messenger.0_test.dart
Valentin Vignal 27e53c813c
Add tests for scaffold messenger examples (#152536)
Contributes to https://github.com/flutter/flutter/issues/130459

It adds a test for
- `examples/api/lib/material/scaffold/scaffold_messenger.0.dart`
- `examples/api/lib/material/scaffold/scaffold_messenger.of.0.dart`
- `examples/api/lib/material/scaffold/scaffold_messenger.of.1.dart`
2024-07-31 14:59:13 +00:00

23 lines
836 B
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_messenger.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('The snack bar should be visible after tapping the button', (WidgetTester tester) async {
await tester.pumpWidget(
const example.ScaffoldMessengerExampleApp(),
);
expect(find.widgetWithText(AppBar, 'ScaffoldMessenger Sample'), findsOne);
await tester.tap(find.widgetWithText(OutlinedButton, 'Show SnackBar'));
await tester.pumpAndSettle();
expect(find.widgetWithText(SnackBar, 'A SnackBar has been shown.'), findsOne);
});
}