mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Add test for menu_anchor.2.dart (#151399)
Contributes to https://github.com/flutter/flutter/issues/130459 It adds a test for - `examples/api/lib/material/menu_anchor/menu_anchor.2.dart`
This commit is contained in:
parent
58068d8ea4
commit
e47c837290
@ -319,7 +319,6 @@ final Set<String> _knownMissingTests = <String>{
|
||||
'examples/api/test/material/selection_container/selection_container.0_test.dart',
|
||||
'examples/api/test/material/color_scheme/dynamic_content_color.0_test.dart',
|
||||
'examples/api/test/material/platform_menu_bar/platform_menu_bar.0_test.dart',
|
||||
'examples/api/test/material/menu_anchor/menu_anchor.2_test.dart',
|
||||
'examples/api/test/material/flexible_space_bar/flexible_space_bar.0_test.dart',
|
||||
'examples/api/test/material/chip/deletable_chip_attributes.on_deleted.0_test.dart',
|
||||
'examples/api/test/material/expansion_panel/expansion_panel_list.expansion_panel_list_radio.0_test.dart',
|
||||
|
@ -0,0 +1,28 @@
|
||||
// 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/menu_anchor/menu_anchor.2.dart' as example;
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('The menu should display three items', (WidgetTester tester) async {
|
||||
await tester.pumpWidget(
|
||||
const example.MenuAnchorApp(),
|
||||
);
|
||||
|
||||
expect(find.widgetWithText(AppBar, 'MenuAnchorButton'), findsOne);
|
||||
expect(
|
||||
find.descendant(of: find.byType(MenuAnchor), matching: find.widgetWithIcon(IconButton, Icons.more_horiz)),
|
||||
findsOne,
|
||||
);
|
||||
|
||||
await tester.tap(find.byIcon(Icons.more_horiz));
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
for (int i = 1; i <= 3; i++) {
|
||||
expect(find.widgetWithText(MenuItemButton, 'Item $i'), findsOne);
|
||||
}
|
||||
});
|
||||
}
|
Loading…
Reference in New Issue
Block a user