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
de9f775f
Unverified
Commit
de9f775f
authored
Sep 07, 2018
by
Ben Konyi
Committed by
GitHub
Sep 07, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed missing implementations of toString() in two tests (#21509)
parent
908de76c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
theme_test.dart
packages/flutter/test/material/theme_test.dart
+4
-0
proxy_box_test.dart
packages/flutter/test/rendering/proxy_box_test.dart
+3
-0
No files found.
packages/flutter/test/material/theme_test.dart
View file @
de9f775f
...
...
@@ -459,6 +459,10 @@ class _TextStyleProxy implements TextStyle {
@override
TextBaseline
get
textBaseline
=>
_delegate
.
textBaseline
;
@override
double
get
wordSpacing
=>
_delegate
.
wordSpacing
;
@override
String
toString
({
DiagnosticLevel
minLevel
=
DiagnosticLevel
.
debug
})
=>
super
.
toString
();
@override
DiagnosticsNode
toDiagnosticsNode
({
String
name
,
DiagnosticsTreeStyle
style
})
{
throw
new
UnimplementedError
();
...
...
packages/flutter/test/rendering/proxy_box_test.dart
View file @
de9f775f
...
...
@@ -289,4 +289,7 @@ class _FakeTicker implements Ticker {
@override
void
unscheduleTick
()
{}
@override
String
toString
({
bool
debugIncludeStack
=
false
})
=>
super
.
toString
();
}
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