Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
db2f66aa
Commit
db2f66aa
authored
Apr 15, 2016
by
Yegor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[test] make CommonFinders constructor private to disallow extensions (#3371)
parent
27715e1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
widget_tester.dart
packages/flutter_test/lib/src/widget_tester.dart
+2
-2
No files found.
packages/flutter_test/lib/src/widget_tester.dart
View file @
db2f66aa
...
@@ -38,7 +38,7 @@ void testWidgets(void callback(WidgetTester widgetTester)) {
...
@@ -38,7 +38,7 @@ void testWidgets(void callback(WidgetTester widgetTester)) {
/// tester.widget(find.byType(MyWidget));
/// tester.widget(find.byType(MyWidget));
/// tester.stateOf(find.byConfig(config));
/// tester.stateOf(find.byConfig(config));
/// tester.getSize(find.byKey(new ValueKey('save-button')));
/// tester.getSize(find.byKey(new ValueKey('save-button')));
const
CommonFinders
find
=
const
CommonFinders
();
const
CommonFinders
find
=
const
CommonFinders
.
_
();
/// Asserts that [finder] locates a widget in the test element tree.
/// Asserts that [finder] locates a widget in the test element tree.
///
///
...
@@ -239,7 +239,7 @@ class WidgetTester {
...
@@ -239,7 +239,7 @@ class WidgetTester {
/// Provides lightweight syntax for getting frequently used widget [Finder]s.
/// Provides lightweight syntax for getting frequently used widget [Finder]s.
class
CommonFinders
{
class
CommonFinders
{
const
CommonFinders
();
const
CommonFinders
.
_
();
/// Finds [Text] widgets containing string equal to [text].
/// Finds [Text] widgets containing string equal to [text].
Finder
text
(
String
text
)
=>
new
_TextFinder
(
text
);
Finder
text
(
String
text
)
=>
new
_TextFinder
(
text
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment