forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing tests for OverflowBar example. (#146780)
Added missing tests for OverflowBar example. Issue #130459
- Loading branch information
1 parent
bc88d0b
commit 4daad32
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
examples/api/test/widgets/overflow_bar/overflow_bar.0_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/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); | ||
}); | ||
} |