flutter/examples/api/test/widgets/overflow_bar/overflow_bar.0_test.dart
Matt Carroll 4daad32a01
Added missing tests for OverflowBar example. (#146780)
Added missing tests for OverflowBar example. Issue #130459
2024-04-16 22:10:56 +00:00

29 lines
956 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/widgets/overflow_bar/overflow_bar.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('OverflowBar displays buttons', (WidgetTester tester) async {
await tester.pumpWidget(
const example.OverflowBarExampleApp(),
);
// Creates a finder that matches widgets of the given
// `widgetType`, ensuring that the given widgets exist
// inside of an OverflowBar.
Finder buttonsFinder(Type widgetType) {
return find.descendant(
of: find.byType(OverflowBar),
matching: find.byType(widgetType),
);
}
expect(buttonsFinder(TextButton), findsNWidgets(2));
expect(buttonsFinder(OutlinedButton), findsOne);
});
}