Unverified Commit 4bf03c6c authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by GitHub

implicit-casts:false in flutter_test (#44996)

parent adc73510
include: ../analysis_options.yaml
analyzer:
strong-mode:
implicit-casts: false
implicit-dynamic: false
linter:
rules:
avoid_as: false # Disabled so we can gradually migrate to no implicit dynamic.
...@@ -135,7 +135,7 @@ class LocalComparisonOutput { ...@@ -135,7 +135,7 @@ class LocalComparisonOutput {
if (result.diffs != null) { if (result.diffs != null) {
additionalFeedback = '\nFailure feedback can be found at ' additionalFeedback = '\nFailure feedback can be found at '
'${path.join(basedir.path, 'failures')}'; '${path.join(basedir.path, 'failures')}';
final Map<String, Image> diffs = result.diffs; final Map<String, Image> diffs = result.diffs.cast<String, Image>();
diffs.forEach((String name, Image image) { diffs.forEach((String name, Image image) {
final File output = getFailureFile( final File output = getFailureFile(
key.isEmpty ? name : name + '_' + key, key.isEmpty ? name : name + '_' + key,
......
...@@ -196,7 +196,7 @@ class MinimumTextContrastGuideline extends AccessibilityGuideline { ...@@ -196,7 +196,7 @@ class MinimumTextContrastGuideline extends AccessibilityGuideline {
Future<Evaluation> evaluate(WidgetTester tester) async { Future<Evaluation> evaluate(WidgetTester tester) async {
final SemanticsNode root = tester.binding.pipelineOwner.semanticsOwner.rootSemanticsNode; final SemanticsNode root = tester.binding.pipelineOwner.semanticsOwner.rootSemanticsNode;
final RenderView renderView = tester.binding.renderView; final RenderView renderView = tester.binding.renderView;
final OffsetLayer layer = renderView.debugLayer; final OffsetLayer layer = renderView.debugLayer as OffsetLayer;
ui.Image image; ui.Image image;
final ByteData byteData = await tester.binding.runAsync<ByteData>(() async { final ByteData byteData = await tester.binding.runAsync<ByteData>(() async {
// Needs to be the same pixel ratio otherwise our dimensions won't match the // Needs to be the same pixel ratio otherwise our dimensions won't match the
...@@ -231,7 +231,7 @@ class MinimumTextContrastGuideline extends AccessibilityGuideline { ...@@ -231,7 +231,7 @@ class MinimumTextContrastGuideline extends AccessibilityGuideline {
Rect paintBounds; Rect paintBounds;
if (elements.length == 1) { if (elements.length == 1) {
final Element element = elements.single; final Element element = elements.single;
final RenderBox renderObject = element.renderObject; final RenderBox renderObject = element.renderObject as RenderBox;
element.renderObject.paintBounds; element.renderObject.paintBounds;
paintBounds = Rect.fromPoints( paintBounds = Rect.fromPoints(
renderObject.localToGlobal(element.renderObject.paintBounds.topLeft - const Offset(4.0, 4.0)), renderObject.localToGlobal(element.renderObject.paintBounds.topLeft - const Offset(4.0, 4.0)),
...@@ -406,15 +406,15 @@ class _ContrastReport { ...@@ -406,15 +406,15 @@ class _ContrastReport {
if (r <= 0.03928) if (r <= 0.03928)
r /= 12.92; r /= 12.92;
else else
r = math.pow((r + 0.055)/ 1.055, 2.4); r = math.pow((r + 0.055)/ 1.055, 2.4).toDouble();
if (g <= 0.03928) if (g <= 0.03928)
g /= 12.92; g /= 12.92;
else else
g = math.pow((g + 0.055)/ 1.055, 2.4); g = math.pow((g + 0.055)/ 1.055, 2.4).toDouble();
if (b <= 0.03928) if (b <= 0.03928)
b /= 12.92; b /= 12.92;
else else
b = math.pow((b + 0.055)/ 1.055, 2.4); b = math.pow((b + 0.055)/ 1.055, 2.4).toDouble();
return 0.2126 * r + 0.7152 * g + 0.0722 * b; return 0.2126 * r + 0.7152 * g + 0.0722 * b;
} }
} }
......
...@@ -1335,7 +1335,7 @@ class LiveTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding { ...@@ -1335,7 +1335,7 @@ class LiveTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
} }
@override @override
_LiveTestRenderView get renderView => super.renderView; _LiveTestRenderView get renderView => super.renderView as _LiveTestRenderView;
void _handleViewNeedsPaint() { void _handleViewNeedsPaint() {
_viewNeedsPaint = true; _viewNeedsPaint = true;
...@@ -1577,7 +1577,7 @@ class _LiveTestRenderView extends RenderView { ...@@ -1577,7 +1577,7 @@ class _LiveTestRenderView extends RenderView {
}) : super(configuration: configuration, window: window); }) : super(configuration: configuration, window: window);
@override @override
TestViewConfiguration get configuration => super.configuration; TestViewConfiguration get configuration => super.configuration as TestViewConfiguration;
@override @override
set configuration(covariant TestViewConfiguration value) { super.configuration = value; } set configuration(covariant TestViewConfiguration value) { super.configuration = value; }
......
...@@ -62,7 +62,7 @@ abstract class WidgetController { ...@@ -62,7 +62,7 @@ abstract class WidgetController {
/// * Use [widgetList] if you expect to match several widgets and want all of them. /// * Use [widgetList] if you expect to match several widgets and want all of them.
T widget<T extends Widget>(Finder finder) { T widget<T extends Widget>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().single.widget; return finder.evaluate().single.widget as T;
} }
/// The first matching widget according to a depth-first pre-order /// The first matching widget according to a depth-first pre-order
...@@ -73,7 +73,7 @@ abstract class WidgetController { ...@@ -73,7 +73,7 @@ abstract class WidgetController {
/// * Use [widget] if you only expect to match one widget. /// * Use [widget] if you only expect to match one widget.
T firstWidget<T extends Widget>(Finder finder) { T firstWidget<T extends Widget>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().first.widget; return finder.evaluate().first.widget as T;
} }
/// The matching widgets in the widget tree. /// The matching widgets in the widget tree.
...@@ -83,7 +83,7 @@ abstract class WidgetController { ...@@ -83,7 +83,7 @@ abstract class WidgetController {
Iterable<T> widgetList<T extends Widget>(Finder finder) { Iterable<T> widgetList<T extends Widget>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().map<T>((Element element) { return finder.evaluate().map<T>((Element element) {
final T result = element.widget; final T result = element.widget as T;
return result; return result;
}); });
} }
...@@ -107,7 +107,7 @@ abstract class WidgetController { ...@@ -107,7 +107,7 @@ abstract class WidgetController {
/// * Use [elementList] if you expect to match several elements and want all of them. /// * Use [elementList] if you expect to match several elements and want all of them.
T element<T extends Element>(Finder finder) { T element<T extends Element>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().single; return finder.evaluate().single as T;
} }
/// The first matching element according to a depth-first pre-order /// The first matching element according to a depth-first pre-order
...@@ -118,7 +118,7 @@ abstract class WidgetController { ...@@ -118,7 +118,7 @@ abstract class WidgetController {
/// * Use [element] if you only expect to match one element. /// * Use [element] if you only expect to match one element.
T firstElement<T extends Element>(Finder finder) { T firstElement<T extends Element>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().first; return finder.evaluate().first as T;
} }
/// The matching elements in the widget tree. /// The matching elements in the widget tree.
...@@ -127,7 +127,7 @@ abstract class WidgetController { ...@@ -127,7 +127,7 @@ abstract class WidgetController {
/// * Use [firstElement] if you expect to match several but only want the first. /// * Use [firstElement] if you expect to match several but only want the first.
Iterable<T> elementList<T extends Element>(Finder finder) { Iterable<T> elementList<T extends Element>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate(); return finder.evaluate().cast<T>();
} }
/// All states currently in the widget tree (lazy pre-order traversal). /// All states currently in the widget tree (lazy pre-order traversal).
...@@ -179,7 +179,7 @@ abstract class WidgetController { ...@@ -179,7 +179,7 @@ abstract class WidgetController {
T _stateOf<T extends State>(Element element, Finder finder) { T _stateOf<T extends State>(Element element, Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
if (element is StatefulElement) if (element is StatefulElement)
return element.state; return element.state as T;
throw StateError('Widget of type ${element.widget.runtimeType}, with ${finder.description}, is not a StatefulWidget.'); throw StateError('Widget of type ${element.widget.runtimeType}, with ${finder.description}, is not a StatefulWidget.');
} }
...@@ -204,7 +204,7 @@ abstract class WidgetController { ...@@ -204,7 +204,7 @@ abstract class WidgetController {
/// * Use [renderObjectList] if you expect to match several render objects and want all of them. /// * Use [renderObjectList] if you expect to match several render objects and want all of them.
T renderObject<T extends RenderObject>(Finder finder) { T renderObject<T extends RenderObject>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().single.renderObject; return finder.evaluate().single.renderObject as T;
} }
/// The render object of the first matching widget according to a /// The render object of the first matching widget according to a
...@@ -215,7 +215,7 @@ abstract class WidgetController { ...@@ -215,7 +215,7 @@ abstract class WidgetController {
/// * Use [renderObject] if you only expect to match one render object. /// * Use [renderObject] if you only expect to match one render object.
T firstRenderObject<T extends RenderObject>(Finder finder) { T firstRenderObject<T extends RenderObject>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().first.renderObject; return finder.evaluate().first.renderObject as T;
} }
/// The render objects of the matching widgets in the widget tree. /// The render objects of the matching widgets in the widget tree.
...@@ -225,7 +225,7 @@ abstract class WidgetController { ...@@ -225,7 +225,7 @@ abstract class WidgetController {
Iterable<T> renderObjectList<T extends RenderObject>(Finder finder) { Iterable<T> renderObjectList<T extends RenderObject>(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
return finder.evaluate().map<T>((Element element) { return finder.evaluate().map<T>((Element element) {
final T result = element.renderObject; final T result = element.renderObject as T;
return result; return result;
}); });
} }
...@@ -644,7 +644,7 @@ abstract class WidgetController { ...@@ -644,7 +644,7 @@ abstract class WidgetController {
Offset _getElementPoint(Finder finder, Offset sizeToPoint(Size size)) { Offset _getElementPoint(Finder finder, Offset sizeToPoint(Size size)) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
final Element element = finder.evaluate().single; final Element element = finder.evaluate().single;
final RenderBox box = element.renderObject; final RenderBox box = element.renderObject as RenderBox;
assert(box != null); assert(box != null);
return box.localToGlobal(sizeToPoint(box.size)); return box.localToGlobal(sizeToPoint(box.size));
} }
...@@ -654,7 +654,7 @@ abstract class WidgetController { ...@@ -654,7 +654,7 @@ abstract class WidgetController {
Size getSize(Finder finder) { Size getSize(Finder finder) {
TestAsyncUtils.guardSync(); TestAsyncUtils.guardSync();
final Element element = finder.evaluate().single; final Element element = finder.evaluate().single;
final RenderBox box = element.renderObject; final RenderBox box = element.renderObject as RenderBox;
assert(box != null); assert(box != null);
return box.size; return box.size;
} }
......
...@@ -501,7 +501,7 @@ class _HitTestableFinder extends ChainedFinder { ...@@ -501,7 +501,7 @@ class _HitTestableFinder extends ChainedFinder {
@override @override
Iterable<Element> filter(Iterable<Element> parentCandidates) sync* { Iterable<Element> filter(Iterable<Element> parentCandidates) sync* {
for (final Element candidate in parentCandidates) { for (final Element candidate in parentCandidates) {
final RenderBox box = candidate.renderObject; final RenderBox box = candidate.renderObject as RenderBox;
assert(box != null); assert(box != null);
final Offset absoluteOffset = box.localToGlobal(alignment.alongSize(box.size)); final Offset absoluteOffset = box.localToGlobal(alignment.alongSize(box.size));
final HitTestResult hitResult = HitTestResult(); final HitTestResult hitResult = HitTestResult();
...@@ -544,14 +544,13 @@ class _TextFinder extends MatchFinder { ...@@ -544,14 +544,13 @@ class _TextFinder extends MatchFinder {
@override @override
bool matches(Element candidate) { bool matches(Element candidate) {
if (candidate.widget is Text) { final Widget widget = candidate.widget;
final Text textWidget = candidate.widget; if (widget is Text) {
if (textWidget.data != null) if (widget.data != null)
return textWidget.data == text; return widget.data == text;
return textWidget.textSpan.toPlainText() == text; return widget.textSpan.toPlainText() == text;
} else if (candidate.widget is EditableText) { } else if (widget is EditableText) {
final EditableText editable = candidate.widget; return widget.controller.text == text;
return editable.controller.text == text;
} }
return false; return false;
} }
......
...@@ -662,7 +662,7 @@ class _FindsWidgetMatcher extends Matcher { ...@@ -662,7 +662,7 @@ class _FindsWidgetMatcher extends Matcher {
Map<dynamic, dynamic> matchState, Map<dynamic, dynamic> matchState,
bool verbose, bool verbose,
) { ) {
final Finder finder = matchState[Finder]; final Finder finder = matchState[Finder] as Finder;
final int count = finder.evaluate().length; final int count = finder.evaluate().length;
if (count == 0) { if (count == 0) {
assert(min != null && min > 0); assert(min != null && min > 0);
...@@ -790,7 +790,7 @@ class _EqualsIgnoringHashCodes extends Matcher { ...@@ -790,7 +790,7 @@ class _EqualsIgnoringHashCodes extends Matcher {
@override @override
bool matches(dynamic object, Map<dynamic, dynamic> matchState) { bool matches(dynamic object, Map<dynamic, dynamic> matchState) {
final String description = _normalize(object); final String description = _normalize(object as String);
if (_value != description) { if (_value != description) {
matchState[_mismatchedValueKey] = description; matchState[_mismatchedValueKey] = description;
return false; return false;
...@@ -811,7 +811,7 @@ class _EqualsIgnoringHashCodes extends Matcher { ...@@ -811,7 +811,7 @@ class _EqualsIgnoringHashCodes extends Matcher {
bool verbose, bool verbose,
) { ) {
if (matchState.containsKey(_mismatchedValueKey)) { if (matchState.containsKey(_mismatchedValueKey)) {
final String actualValue = matchState[_mismatchedValueKey]; final String actualValue = matchState[_mismatchedValueKey] as String;
// Leading whitespace is added so that lines in the multi-line // Leading whitespace is added so that lines in the multi-line
// description returned by addDescriptionOf are all indented equally // description returned by addDescriptionOf are all indented equally
// which makes the output easier to read for this case. // which makes the output easier to read for this case.
...@@ -860,7 +860,7 @@ class _HasGoodToStringDeep extends Matcher { ...@@ -860,7 +860,7 @@ class _HasGoodToStringDeep extends Matcher {
@override @override
bool matches(dynamic object, Map<dynamic, dynamic> matchState) { bool matches(dynamic object, Map<dynamic, dynamic> matchState) {
final List<String> issues = <String>[]; final List<String> issues = <String>[];
String description = object.toStringDeep(); String description = object.toStringDeep() as String;
if (description.endsWith('\n')) { if (description.endsWith('\n')) {
// Trim off trailing \n as the remaining calculations assume // Trim off trailing \n as the remaining calculations assume
// the description does not end with a trailing \n. // the description does not end with a trailing \n.
...@@ -898,7 +898,7 @@ class _HasGoodToStringDeep extends Matcher { ...@@ -898,7 +898,7 @@ class _HasGoodToStringDeep extends Matcher {
const String prefixOtherLines = 'PREFIX_OTHER_LINES_'; const String prefixOtherLines = 'PREFIX_OTHER_LINES_';
final List<String> prefixIssues = <String>[]; final List<String> prefixIssues = <String>[];
String descriptionWithPrefixes = String descriptionWithPrefixes =
object.toStringDeep(prefixLineOne: prefixLineOne, prefixOtherLines: prefixOtherLines); object.toStringDeep(prefixLineOne: prefixLineOne, prefixOtherLines: prefixOtherLines) as String;
if (descriptionWithPrefixes.endsWith('\n')) { if (descriptionWithPrefixes.endsWith('\n')) {
// Trim off trailing \n as the remaining calculations assume // Trim off trailing \n as the remaining calculations assume
// the description does not end with a trailing \n. // the description does not end with a trailing \n.
...@@ -944,8 +944,7 @@ class _HasGoodToStringDeep extends Matcher { ...@@ -944,8 +944,7 @@ class _HasGoodToStringDeep extends Matcher {
bool verbose, bool verbose,
) { ) {
if (matchState.containsKey(_toStringDeepErrorDescriptionKey)) { if (matchState.containsKey(_toStringDeepErrorDescriptionKey)) {
return mismatchDescription.add( return mismatchDescription.add(matchState[_toStringDeepErrorDescriptionKey] as String);
matchState[_toStringDeepErrorDescriptionKey]);
} }
return mismatchDescription; return mismatchDescription;
} }
...@@ -1030,7 +1029,9 @@ double _rectDistance(Rect a, Rect b) { ...@@ -1030,7 +1029,9 @@ double _rectDistance(Rect a, Rect b) {
} }
double _sizeDistance(Size a, Size b) { double _sizeDistance(Size a, Size b) {
final Offset delta = b - a; // TODO(a14n): remove ignore when lint is updated, https://github.com/dart-lang/linter/issues/1843
// ignore: unnecessary_parenthesis
final Offset delta = (b - a) as Offset;
return delta.distance; return delta.distance;
} }
...@@ -1063,7 +1064,7 @@ Matcher within<T>({ ...@@ -1063,7 +1064,7 @@ Matcher within<T>({
@required T from, @required T from,
DistanceFunction<T> distanceFunction, DistanceFunction<T> distanceFunction,
}) { }) {
distanceFunction ??= _kStandardDistanceFunctions[T]; distanceFunction ??= _kStandardDistanceFunctions[T] as DistanceFunction<T>;
if (distanceFunction == null) { if (distanceFunction == null) {
throw ArgumentError( throw ArgumentError(
...@@ -1089,7 +1090,7 @@ class _IsWithinDistance<T> extends Matcher { ...@@ -1089,7 +1090,7 @@ class _IsWithinDistance<T> extends Matcher {
return false; return false;
if (object == value) if (object == value)
return true; return true;
final T test = object; final T test = object as T;
final num distance = distanceFunction(test, value); final num distance = distanceFunction(test, value);
if (distance < 0) { if (distance < 0) {
throw ArgumentError( throw ArgumentError(
...@@ -1130,7 +1131,7 @@ class _MoreOrLessEquals extends Matcher { ...@@ -1130,7 +1131,7 @@ class _MoreOrLessEquals extends Matcher {
return false; return false;
if (object == value) if (object == value)
return true; return true;
final double test = object; final double test = object as double;
return (test - value).abs() <= epsilon; return (test - value).abs() <= epsilon;
} }
...@@ -1280,7 +1281,7 @@ abstract class _FailWithDescriptionMatcher extends Matcher { ...@@ -1280,7 +1281,7 @@ abstract class _FailWithDescriptionMatcher extends Matcher {
Map<dynamic, dynamic> matchState, Map<dynamic, dynamic> matchState,
bool verbose, bool verbose,
) { ) {
return mismatchDescription.add(matchState['failure']); return mismatchDescription.add(matchState['failure'] as String);
} }
} }
...@@ -1325,10 +1326,10 @@ abstract class _MatchRenderObject<M extends RenderObject, T extends RenderObject ...@@ -1325,10 +1326,10 @@ abstract class _MatchRenderObject<M extends RenderObject, T extends RenderObject
final RenderObject renderObject = nodes.single.renderObject; final RenderObject renderObject = nodes.single.renderObject;
if (renderObject.runtimeType == T) if (renderObject.runtimeType == T)
return renderObjectMatchesT(matchState, renderObject); return renderObjectMatchesT(matchState, renderObject as T);
if (renderObject.runtimeType == M) if (renderObject.runtimeType == M)
return renderObjectMatchesM(matchState, renderObject); return renderObjectMatchesM(matchState, renderObject as M);
return failWithDescription(matchState, 'had a root render object of type: ${renderObject.runtimeType}'); return failWithDescription(matchState, 'had a root render object of type: ${renderObject.runtimeType}');
} }
...@@ -1363,7 +1364,7 @@ class _RendersOnPhysicalModel extends _MatchRenderObject<RenderPhysicalShape, Re ...@@ -1363,7 +1364,7 @@ class _RendersOnPhysicalModel extends _MatchRenderObject<RenderPhysicalShape, Re
bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderPhysicalShape renderObject) { bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderPhysicalShape renderObject) {
if (renderObject.clipper.runtimeType != ShapeBorderClipper) if (renderObject.clipper.runtimeType != ShapeBorderClipper)
return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}'); return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}');
final ShapeBorderClipper shapeClipper = renderObject.clipper; final ShapeBorderClipper shapeClipper = renderObject.clipper as ShapeBorderClipper;
if (borderRadius != null && !assertRoundedRectangle(shapeClipper, borderRadius, matchState)) if (borderRadius != null && !assertRoundedRectangle(shapeClipper, borderRadius, matchState))
return false; return false;
...@@ -1393,7 +1394,7 @@ class _RendersOnPhysicalModel extends _MatchRenderObject<RenderPhysicalShape, Re ...@@ -1393,7 +1394,7 @@ class _RendersOnPhysicalModel extends _MatchRenderObject<RenderPhysicalShape, Re
bool assertRoundedRectangle(ShapeBorderClipper shapeClipper, BorderRadius borderRadius, Map<dynamic, dynamic> matchState) { bool assertRoundedRectangle(ShapeBorderClipper shapeClipper, BorderRadius borderRadius, Map<dynamic, dynamic> matchState) {
if (shapeClipper.shape.runtimeType != RoundedRectangleBorder) if (shapeClipper.shape.runtimeType != RoundedRectangleBorder)
return failWithDescription(matchState, 'had shape border: ${shapeClipper.shape}'); return failWithDescription(matchState, 'had shape border: ${shapeClipper.shape}');
final RoundedRectangleBorder border = shapeClipper.shape; final RoundedRectangleBorder border = shapeClipper.shape as RoundedRectangleBorder;
if (border.borderRadius != borderRadius) if (border.borderRadius != borderRadius)
return failWithDescription(matchState, 'had borderRadius: ${border.borderRadius}'); return failWithDescription(matchState, 'had borderRadius: ${border.borderRadius}');
return true; return true;
...@@ -1431,7 +1432,7 @@ class _RendersOnPhysicalShape extends _MatchRenderObject<RenderPhysicalShape, Re ...@@ -1431,7 +1432,7 @@ class _RendersOnPhysicalShape extends _MatchRenderObject<RenderPhysicalShape, Re
bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderPhysicalShape renderObject) { bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderPhysicalShape renderObject) {
if (renderObject.clipper.runtimeType != ShapeBorderClipper) if (renderObject.clipper.runtimeType != ShapeBorderClipper)
return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}'); return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}');
final ShapeBorderClipper shapeClipper = renderObject.clipper; final ShapeBorderClipper shapeClipper = renderObject.clipper as ShapeBorderClipper;
if (shapeClipper.shape != shape) if (shapeClipper.shape != shape)
return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}'); return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}');
...@@ -1470,10 +1471,10 @@ class _ClipsWithBoundingRect extends _MatchRenderObject<RenderClipPath, RenderCl ...@@ -1470,10 +1471,10 @@ class _ClipsWithBoundingRect extends _MatchRenderObject<RenderClipPath, RenderCl
bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderClipPath renderObject) { bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderClipPath renderObject) {
if (renderObject.clipper.runtimeType != ShapeBorderClipper) if (renderObject.clipper.runtimeType != ShapeBorderClipper)
return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}'); return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}');
final ShapeBorderClipper shapeClipper = renderObject.clipper; final ShapeBorderClipper shapeClipper = renderObject.clipper as ShapeBorderClipper;
if (shapeClipper.shape.runtimeType != RoundedRectangleBorder) if (shapeClipper.shape.runtimeType != RoundedRectangleBorder)
return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}'); return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}');
final RoundedRectangleBorder border = shapeClipper.shape; final RoundedRectangleBorder border = shapeClipper.shape as RoundedRectangleBorder;
if (border.borderRadius != BorderRadius.zero) if (border.borderRadius != BorderRadius.zero)
return failWithDescription(matchState, 'borderRadius was: ${border.borderRadius}'); return failWithDescription(matchState, 'borderRadius was: ${border.borderRadius}');
return true; return true;
...@@ -1505,10 +1506,10 @@ class _ClipsWithBoundingRRect extends _MatchRenderObject<RenderClipPath, RenderC ...@@ -1505,10 +1506,10 @@ class _ClipsWithBoundingRRect extends _MatchRenderObject<RenderClipPath, RenderC
bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderClipPath renderObject) { bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderClipPath renderObject) {
if (renderObject.clipper.runtimeType != ShapeBorderClipper) if (renderObject.clipper.runtimeType != ShapeBorderClipper)
return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}'); return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}');
final ShapeBorderClipper shapeClipper = renderObject.clipper; final ShapeBorderClipper shapeClipper = renderObject.clipper as ShapeBorderClipper;
if (shapeClipper.shape.runtimeType != RoundedRectangleBorder) if (shapeClipper.shape.runtimeType != RoundedRectangleBorder)
return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}'); return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}');
final RoundedRectangleBorder border = shapeClipper.shape; final RoundedRectangleBorder border = shapeClipper.shape as RoundedRectangleBorder;
if (border.borderRadius != borderRadius) if (border.borderRadius != borderRadius)
return failWithDescription(matchState, 'had borderRadius: ${border.borderRadius}'); return failWithDescription(matchState, 'had borderRadius: ${border.borderRadius}');
return true; return true;
...@@ -1528,7 +1529,7 @@ class _ClipsWithShapeBorder extends _MatchRenderObject<RenderClipPath, RenderCli ...@@ -1528,7 +1529,7 @@ class _ClipsWithShapeBorder extends _MatchRenderObject<RenderClipPath, RenderCli
bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderClipPath renderObject) { bool renderObjectMatchesM(Map<dynamic, dynamic> matchState, RenderClipPath renderObject) {
if (renderObject.clipper.runtimeType != ShapeBorderClipper) if (renderObject.clipper.runtimeType != ShapeBorderClipper)
return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}'); return failWithDescription(matchState, 'clipper was: ${renderObject.clipper}');
final ShapeBorderClipper shapeClipper = renderObject.clipper; final ShapeBorderClipper shapeClipper = renderObject.clipper as ShapeBorderClipper;
if (shapeClipper.shape != shape) if (shapeClipper.shape != shape)
return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}'); return failWithDescription(matchState, 'shape was: ${shapeClipper.shape}');
return true; return true;
...@@ -1609,7 +1610,7 @@ class _CoversSameAreaAs extends Matcher { ...@@ -1609,7 +1610,7 @@ class _CoversSameAreaAs extends Matcher {
Map<dynamic, dynamic> matchState, Map<dynamic, dynamic> matchState,
bool verbose, bool verbose,
) { ) {
return mismatchDescription.add(matchState['failure']); return mismatchDescription.add(matchState['failure'] as String);
} }
@override @override
...@@ -1638,11 +1639,11 @@ class _ColorMatcher extends Matcher { ...@@ -1638,11 +1639,11 @@ class _ColorMatcher extends Matcher {
Future<ui.Image> _captureImage(Element element) { Future<ui.Image> _captureImage(Element element) {
RenderObject renderObject = element.renderObject; RenderObject renderObject = element.renderObject;
while (!renderObject.isRepaintBoundary) { while (!renderObject.isRepaintBoundary) {
renderObject = renderObject.parent; renderObject = renderObject.parent as RenderObject;
assert(renderObject != null); assert(renderObject != null);
} }
assert(!renderObject.debugNeedsPaint); assert(!renderObject.debugNeedsPaint);
final OffsetLayer layer = renderObject.debugLayer; final OffsetLayer layer = renderObject.debugLayer as OffsetLayer;
return layer.toImage(renderObject.paintBounds); return layer.toImage(renderObject.paintBounds);
} }
...@@ -1673,7 +1674,7 @@ class _MatchesReferenceImage extends AsyncMatcher { ...@@ -1673,7 +1674,7 @@ class _MatchesReferenceImage extends AsyncMatcher {
} else if (item is ui.Image) { } else if (item is ui.Image) {
imageFuture = Future<ui.Image>.value(item); imageFuture = Future<ui.Image>.value(item);
} else { } else {
final Finder finder = item; final Finder finder = item as Finder;
final Iterable<Element> elements = finder.evaluate(); final Iterable<Element> elements = finder.evaluate();
if (elements.isEmpty) { if (elements.isEmpty) {
return 'could not be rendered because no widget was found'; return 'could not be rendered because no widget was found';
...@@ -1683,7 +1684,7 @@ class _MatchesReferenceImage extends AsyncMatcher { ...@@ -1683,7 +1684,7 @@ class _MatchesReferenceImage extends AsyncMatcher {
imageFuture = _captureImage(elements.single); imageFuture = _captureImage(elements.single);
} }
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized(); final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized() as TestWidgetsFlutterBinding;
return binding.runAsync<String>(() async { return binding.runAsync<String>(() async {
final ui.Image image = await imageFuture; final ui.Image image = await imageFuture;
final ByteData bytes = await image.toByteData(); final ByteData bytes = await image.toByteData();
...@@ -1727,7 +1728,7 @@ class _MatchesGoldenFile extends AsyncMatcher { ...@@ -1727,7 +1728,7 @@ class _MatchesGoldenFile extends AsyncMatcher {
} else if (item is ui.Image) { } else if (item is ui.Image) {
imageFuture = Future<ui.Image>.value(item); imageFuture = Future<ui.Image>.value(item);
} else { } else {
final Finder finder = item; final Finder finder = item as Finder;
final Iterable<Element> elements = finder.evaluate(); final Iterable<Element> elements = finder.evaluate();
if (elements.isEmpty) { if (elements.isEmpty) {
return 'could not be rendered because no widget was found'; return 'could not be rendered because no widget was found';
...@@ -1739,7 +1740,7 @@ class _MatchesGoldenFile extends AsyncMatcher { ...@@ -1739,7 +1740,7 @@ class _MatchesGoldenFile extends AsyncMatcher {
final Uri testNameUri = goldenFileComparator.getTestUri(key, version); final Uri testNameUri = goldenFileComparator.getTestUri(key, version);
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized(); final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized() as TestWidgetsFlutterBinding;
return binding.runAsync<String>(() async { return binding.runAsync<String>(() async {
final ui.Image image = await imageFuture; final ui.Image image = await imageFuture;
final ByteData bytes = await image.toByteData(format: ui.ImageByteFormat.png); final ByteData bytes = await image.toByteData(format: ui.ImageByteFormat.png);
...@@ -1845,7 +1846,7 @@ class _MatchesSemanticsData extends Matcher { ...@@ -1845,7 +1846,7 @@ class _MatchesSemanticsData extends Matcher {
description.add(' with custom hints: $hintOverrides'); description.add(' with custom hints: $hintOverrides');
if (children != null) { if (children != null) {
description.add(' with children:\n'); description.add(' with children:\n');
for (_MatchesSemanticsData child in children) for (_MatchesSemanticsData child in children.cast<_MatchesSemanticsData>())
child.describe(description); child.describe(description);
} }
return description; return description;
...@@ -1858,7 +1859,7 @@ class _MatchesSemanticsData extends Matcher { ...@@ -1858,7 +1859,7 @@ class _MatchesSemanticsData extends Matcher {
if (node == null) if (node == null)
return failWithDescription(matchState, 'No SemanticsData provided. ' return failWithDescription(matchState, 'No SemanticsData provided. '
'Maybe you forgot to enable semantics?'); 'Maybe you forgot to enable semantics?');
final SemanticsData data = node is SemanticsNode ? node.getSemanticsData() : node; final SemanticsData data = node is SemanticsNode ? node.getSemanticsData() : (node as SemanticsData);
if (label != null && label != data.label) if (label != null && label != data.label)
return failWithDescription(matchState, 'label was: ${data.label}'); return failWithDescription(matchState, 'label was: ${data.label}');
if (hint != null && hint != data.hint) if (hint != null && hint != data.hint)
...@@ -1956,7 +1957,7 @@ class _MatchesSemanticsData extends Matcher { ...@@ -1956,7 +1957,7 @@ class _MatchesSemanticsData extends Matcher {
Map<dynamic, dynamic> matchState, Map<dynamic, dynamic> matchState,
bool verbose, bool verbose,
) { ) {
return mismatchDescription.add(matchState['failure']); return mismatchDescription.add(matchState['failure'] as String);
} }
} }
......
...@@ -23,7 +23,7 @@ import 'package:test_api/test_api.dart'; ...@@ -23,7 +23,7 @@ import 'package:test_api/test_api.dart';
Declarer _localDeclarer; Declarer _localDeclarer;
Declarer get _declarer { Declarer get _declarer {
final Declarer declarer = Zone.current[#test.declarer]; final Declarer declarer = Zone.current[#test.declarer] as Declarer;
if (declarer != null) { if (declarer != null) {
return declarer; return declarer;
} }
...@@ -58,9 +58,9 @@ Future<void> _runGroup(Suite suiteConfig, Group group, List<Group> parents, _Rep ...@@ -58,9 +58,9 @@ Future<void> _runGroup(Suite suiteConfig, Group group, List<Group> parents, _Rep
if (entry is Group) { if (entry is Group) {
await _runGroup(suiteConfig, entry, parents, reporter); await _runGroup(suiteConfig, entry, parents, reporter);
} else if (entry.metadata.skip) { } else if (entry.metadata.skip) {
await _runSkippedTest(suiteConfig, entry, parents, reporter); await _runSkippedTest(suiteConfig, entry as Test, parents, reporter);
} else { } else {
final Test test = entry; final Test test = entry as Test;
await _runLiveTest(suiteConfig, test.load(suiteConfig, groups: parents), reporter); await _runLiveTest(suiteConfig, test.load(suiteConfig, groups: parents), reporter);
} }
} }
...@@ -154,7 +154,7 @@ Future<void> _runSkippedTest(Suite suiteConfig, Test test, List<Group> parents, ...@@ -154,7 +154,7 @@ Future<void> _runSkippedTest(Suite suiteConfig, Test test, List<Group> parents,
@isTest @isTest
void test( void test(
Object description, Object description,
Function body, { dynamic Function() body, {
String testOn, String testOn,
Timeout timeout, Timeout timeout,
dynamic skip, dynamic skip,
...@@ -163,7 +163,8 @@ void test( ...@@ -163,7 +163,8 @@ void test(
int retry, int retry,
}) { }) {
_declarer.test( _declarer.test(
description.toString(), body, description.toString(),
body,
testOn: testOn, testOn: testOn,
timeout: timeout, timeout: timeout,
skip: skip, skip: skip,
...@@ -221,7 +222,7 @@ void test( ...@@ -221,7 +222,7 @@ void test(
/// If multiple platforms match, the annotations apply in order as through /// If multiple platforms match, the annotations apply in order as through
/// they were in nested groups. /// they were in nested groups.
@isTestGroup @isTestGroup
void group(Object description, Function body, { dynamic skip }) { void group(Object description, void Function() body, { dynamic skip }) {
_declarer.group(description.toString(), body, skip: skip); _declarer.group(description.toString(), body, skip: skip);
} }
...@@ -236,7 +237,7 @@ void group(Object description, Function body, { dynamic skip }) { ...@@ -236,7 +237,7 @@ void group(Object description, Function body, { dynamic skip }) {
/// ///
/// Each callback at the top level or in a given group will be run in the order /// Each callback at the top level or in a given group will be run in the order
/// they were declared. /// they were declared.
void setUp(Function body) { void setUp(dynamic Function() body) {
_declarer.setUp(body); _declarer.setUp(body);
} }
...@@ -253,7 +254,7 @@ void setUp(Function body) { ...@@ -253,7 +254,7 @@ void setUp(Function body) {
/// reverse of the order they were declared. /// reverse of the order they were declared.
/// ///
/// See also [addTearDown], which adds tear-downs to a running test. /// See also [addTearDown], which adds tear-downs to a running test.
void tearDown(Function body) { void tearDown(dynamic Function() body) {
_declarer.tearDown(body); _declarer.tearDown(body);
} }
...@@ -270,7 +271,7 @@ void tearDown(Function body) { ...@@ -270,7 +271,7 @@ void tearDown(Function body) {
/// dependencies between tests that should be isolated. In general, you should /// dependencies between tests that should be isolated. In general, you should
/// prefer [setUp], and only use [setUpAll] if the callback is prohibitively /// prefer [setUp], and only use [setUpAll] if the callback is prohibitively
/// slow. /// slow.
void setUpAll(Function body) { void setUpAll(dynamic Function() body) {
_declarer.setUpAll(body); _declarer.setUpAll(body);
} }
...@@ -285,7 +286,7 @@ void setUpAll(Function body) { ...@@ -285,7 +286,7 @@ void setUpAll(Function body) {
/// dependencies between tests that should be isolated. In general, you should /// dependencies between tests that should be isolated. In general, you should
/// prefer [tearDown], and only use [tearDownAll] if the callback is /// prefer [tearDown], and only use [tearDownAll] if the callback is
/// prohibitively slow. /// prohibitively slow.
void tearDownAll(Function body) { void tearDownAll(dynamic Function() body) {
_declarer.tearDownAll(body); _declarer.tearDownAll(body);
} }
......
...@@ -87,8 +87,8 @@ class TestTextInput { ...@@ -87,8 +87,8 @@ class TestTextInput {
log.add(methodCall); log.add(methodCall);
switch (methodCall.method) { switch (methodCall.method) {
case 'TextInput.setClient': case 'TextInput.setClient':
_client = methodCall.arguments[0]; _client = methodCall.arguments[0] as int;
setClientArgs = methodCall.arguments[1]; setClientArgs = methodCall.arguments[1] as Map<String, dynamic>;
break; break;
case 'TextInput.clearClient': case 'TextInput.clearClient':
_client = 0; _client = 0;
...@@ -97,7 +97,7 @@ class TestTextInput { ...@@ -97,7 +97,7 @@ class TestTextInput {
onCleared(); onCleared();
break; break;
case 'TextInput.setEditingState': case 'TextInput.setEditingState':
editingState = methodCall.arguments; editingState = methodCall.arguments as Map<String, dynamic>;
break; break;
case 'TextInput.show': case 'TextInput.show':
_isVisible = true; _isVisible = true;
......
...@@ -107,7 +107,7 @@ void testWidgets( ...@@ -107,7 +107,7 @@ void testWidgets(
Duration initialTimeout, Duration initialTimeout,
bool semanticsEnabled = true, bool semanticsEnabled = true,
}) { }) {
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized(); final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized() as TestWidgetsFlutterBinding;
final WidgetTester tester = WidgetTester._(binding); final WidgetTester tester = WidgetTester._(binding);
test( test(
description, description,
...@@ -198,7 +198,7 @@ Future<void> benchmarkWidgets( ...@@ -198,7 +198,7 @@ Future<void> benchmarkWidgets(
print('└─────────────────────────────────────────────────╌┄┈ 🐢'); print('└─────────────────────────────────────────────────╌┄┈ 🐢');
return true; return true;
}()); }());
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized(); final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized() as TestWidgetsFlutterBinding;
assert(binding is! AutomatedTestWidgetsFlutterBinding); assert(binding is! AutomatedTestWidgetsFlutterBinding);
final WidgetTester tester = WidgetTester._(binding); final WidgetTester tester = WidgetTester._(binding);
SemanticsHandle semanticsHandle; SemanticsHandle semanticsHandle;
...@@ -284,7 +284,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -284,7 +284,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
/// The binding instance used by the testing framework. /// The binding instance used by the testing framework.
@override @override
TestWidgetsFlutterBinding get binding => super.binding; TestWidgetsFlutterBinding get binding => super.binding as TestWidgetsFlutterBinding;
/// Renders the UI from the given [widget]. /// Renders the UI from the given [widget].
/// ///
...@@ -485,9 +485,10 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -485,9 +485,10 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
@override @override
void dispatchEvent(PointerEvent event, HitTestResult result) { void dispatchEvent(PointerEvent event, HitTestResult result) {
if (event is PointerDownEvent) { if (event is PointerDownEvent) {
final RenderObject innerTarget = result.path.firstWhere( final RenderObject innerTarget = result.path
(HitTestEntry candidate) => candidate.target is RenderObject, .map((HitTestEntry candidate) => candidate.target)
).target; .whereType<RenderObject>()
.first;
final Element innerTargetElement = collectAllElementsFrom( final Element innerTargetElement = collectAllElementsFrom(
binding.renderViewElement, binding.renderViewElement,
skipOffstage: true, skipOffstage: true,
...@@ -515,8 +516,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -515,8 +516,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
break; break;
totalNumber += 1; // optimistically assume we'll be able to describe it totalNumber += 1; // optimistically assume we'll be able to describe it
if (element.widget is Tooltip) { final Widget widget = element.widget;
final Tooltip widget = element.widget; if (widget is Tooltip) {
final Iterable<Element> matches = find.byTooltip(widget.message).evaluate(); final Iterable<Element> matches = find.byTooltip(widget.message).evaluate();
if (matches.length == 1) { if (matches.length == 1) {
debugPrint(' find.byTooltip(\'${widget.message}\')'); debugPrint(' find.byTooltip(\'${widget.message}\')');
...@@ -524,9 +525,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -524,9 +525,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
} }
} }
if (element.widget is Text) { if (widget is Text) {
assert(descendantText == null); assert(descendantText == null);
final Text widget = element.widget;
final Iterable<Element> matches = find.text(widget.data).evaluate(); final Iterable<Element> matches = find.text(widget.data).evaluate();
descendantText = widget.data; descendantText = widget.data;
if (matches.length == 1) { if (matches.length == 1) {
...@@ -535,13 +535,13 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -535,13 +535,13 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
} }
} }
if (element.widget.key is ValueKey<dynamic>) { final Key key = widget.key;
final ValueKey<dynamic> key = element.widget.key; if (key is ValueKey<dynamic>) {
String keyLabel; String keyLabel;
if (key is ValueKey<int> || if (key is ValueKey<int> ||
key is ValueKey<double> || key is ValueKey<double> ||
key is ValueKey<bool>) { key is ValueKey<bool>) {
keyLabel = 'const ${element.widget.key.runtimeType}(${key.value})'; keyLabel = 'const ${key.runtimeType}(${key.value})';
} else if (key is ValueKey<String>) { } else if (key is ValueKey<String>) {
keyLabel = 'const Key(\'${key.value}\')'; keyLabel = 'const Key(\'${key.value}\')';
} }
...@@ -554,20 +554,20 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -554,20 +554,20 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
} }
} }
if (!_isPrivate(element.widget.runtimeType)) { if (!_isPrivate(widget.runtimeType)) {
if (numberOfTypes < 5) { if (numberOfTypes < 5) {
final Iterable<Element> matches = find.byType(element.widget.runtimeType).evaluate(); final Iterable<Element> matches = find.byType(widget.runtimeType).evaluate();
if (matches.length == 1) { if (matches.length == 1) {
debugPrint(' find.byType(${element.widget.runtimeType})'); debugPrint(' find.byType(${widget.runtimeType})');
numberOfTypes += 1; numberOfTypes += 1;
continue; continue;
} }
} }
if (descendantText != null && numberOfWithTexts < 5) { if (descendantText != null && numberOfWithTexts < 5) {
final Iterable<Element> matches = find.widgetWithText(element.widget.runtimeType, descendantText).evaluate(); final Iterable<Element> matches = find.widgetWithText(widget.runtimeType, descendantText).evaluate();
if (matches.length == 1) { if (matches.length == 1) {
debugPrint(' find.widgetWithText(${element.widget.runtimeType}, \'$descendantText\')'); debugPrint(' find.widgetWithText(${widget.runtimeType}, \'$descendantText\')');
numberOfWithTexts += 1; numberOfWithTexts += 1;
continue; continue;
} }
...@@ -842,7 +842,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker ...@@ -842,7 +842,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
RenderObject renderObject = element.findRenderObject(); RenderObject renderObject = element.findRenderObject();
SemanticsNode result = renderObject.debugSemantics; SemanticsNode result = renderObject.debugSemantics;
while (renderObject != null && result == null) { while (renderObject != null && result == null) {
renderObject = renderObject?.parent; renderObject = renderObject?.parent as RenderObject;
result = renderObject?.debugSemantics; result = renderObject?.debugSemantics;
} }
if (result == null) if (result == null)
......
...@@ -128,7 +128,7 @@ void main() { ...@@ -128,7 +128,7 @@ void main() {
final Text text = find.descendant( final Text text = find.descendant(
of: find.byKey(key1), of: find.byKey(key1),
matching: find.byType(Text), matching: find.byType(Text),
).last.evaluate().single.widget; ).last.evaluate().single.widget as Text;
expect(text.data, '1'); expect(text.data, '1');
}); });
......
...@@ -77,7 +77,7 @@ void main() { ...@@ -77,7 +77,7 @@ void main() {
test('is initialized by test framework', () { test('is initialized by test framework', () {
expect(goldenFileComparator, isNotNull); expect(goldenFileComparator, isNotNull);
expect(goldenFileComparator, isInstanceOf<LocalFileComparator>()); expect(goldenFileComparator, isInstanceOf<LocalFileComparator>());
final LocalFileComparator comparator = goldenFileComparator; final LocalFileComparator comparator = goldenFileComparator as LocalFileComparator;
expect(comparator.basedir.path, contains('flutter_test')); expect(comparator.basedir.path, contains('flutter_test'));
}); });
}); });
......
...@@ -159,7 +159,7 @@ void main() { ...@@ -159,7 +159,7 @@ void main() {
real_test.expect(information[3], isInstanceOf<DiagnosticsProperty<void>>()); real_test.expect(information[3], isInstanceOf<DiagnosticsProperty<void>>());
real_test.expect(information[4], isInstanceOf<DiagnosticsProperty<void>>()); real_test.expect(information[4], isInstanceOf<DiagnosticsProperty<void>>());
real_test.expect(information[5], isInstanceOf<DiagnosticsStackTrace>()); real_test.expect(information[5], isInstanceOf<DiagnosticsStackTrace>());
final DiagnosticsStackTrace stackTraceProperty = information[5]; final DiagnosticsStackTrace stackTraceProperty = information[5] as DiagnosticsStackTrace;
real_test.expect(stackTraceProperty.name, '\nWhen the first method was called, this was the stack'); real_test.expect(stackTraceProperty.name, '\nWhen the first method was called, this was the stack');
real_test.expect(stackTraceProperty.value, isInstanceOf<StackTrace>()); real_test.expect(stackTraceProperty.value, isInstanceOf<StackTrace>());
} }
......
...@@ -11,7 +11,7 @@ void testConfig( ...@@ -11,7 +11,7 @@ void testConfig(
String expectedStringValue, { String expectedStringValue, {
Map<Type, dynamic> otherExpectedValues = const <Type, dynamic>{int: isNull}, Map<Type, dynamic> otherExpectedValues = const <Type, dynamic>{int: isNull},
}) { }) {
final String actualStringValue = Zone.current[String]; final String actualStringValue = Zone.current[String] as String;
final Map<Type, dynamic> otherActualValues = otherExpectedValues.map<Type, dynamic>( final Map<Type, dynamic> otherActualValues = otherExpectedValues.map<Type, dynamic>(
(Type key, dynamic value) { (Type key, dynamic value) {
return MapEntry<Type, dynamic>(key, Zone.current[key]); return MapEntry<Type, dynamic>(key, Zone.current[key]);
......
...@@ -193,7 +193,7 @@ void main() { ...@@ -193,7 +193,7 @@ void main() {
TestFailure failure; TestFailure failure;
try { try {
expect(find.text('foo', skipOffstage: false), findsOneWidget); expect(find.text('foo', skipOffstage: false), findsOneWidget);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
...@@ -216,7 +216,7 @@ void main() { ...@@ -216,7 +216,7 @@ void main() {
TestFailure failure; TestFailure failure;
try { try {
expect(find.text('foo', skipOffstage: false), findsNothing); expect(find.text('foo', skipOffstage: false), findsNothing);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
...@@ -234,7 +234,7 @@ void main() { ...@@ -234,7 +234,7 @@ void main() {
TestFailure failure; TestFailure failure;
try { try {
expect(find.text('foo'), findsNothing); expect(find.text('foo'), findsNothing);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
...@@ -289,7 +289,7 @@ void main() { ...@@ -289,7 +289,7 @@ void main() {
TestFailure failure; TestFailure failure;
try { try {
expect(find.byElementPredicate((_) => false, description: customDescription), findsOneWidget); expect(find.byElementPredicate((_) => false, description: customDescription), findsOneWidget);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
...@@ -306,7 +306,7 @@ void main() { ...@@ -306,7 +306,7 @@ void main() {
TestFailure failure; TestFailure failure;
try { try {
expect(find.byWidgetPredicate((_) => false, description: customDescription), findsOneWidget); expect(find.byWidgetPredicate((_) => false, description: customDescription), findsOneWidget);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
...@@ -360,7 +360,7 @@ void main() { ...@@ -360,7 +360,7 @@ void main() {
of: find.widgetWithText(Column, 'foo'), of: find.widgetWithText(Column, 'foo'),
matching: find.text('bar'), matching: find.text('bar'),
), findsOneWidget); ), findsOneWidget);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
...@@ -422,7 +422,7 @@ void main() { ...@@ -422,7 +422,7 @@ void main() {
of: find.text('bar'), of: find.text('bar'),
matching: find.widgetWithText(Column, 'foo'), matching: find.widgetWithText(Column, 'foo'),
), findsOneWidget); ), findsOneWidget);
} catch (e) { } on TestFailure catch (e) {
failure = e; failure = e;
} }
......
...@@ -224,7 +224,7 @@ void verifyThatTestWindowCanFakeProperty<WindowPropertyType>({ ...@@ -224,7 +224,7 @@ void verifyThatTestWindowCanFakeProperty<WindowPropertyType>({
TestWidgetsFlutterBinding retrieveTestBinding(WidgetTester tester) { TestWidgetsFlutterBinding retrieveTestBinding(WidgetTester tester) {
final WidgetsBinding binding = tester.binding; final WidgetsBinding binding = tester.binding;
assert(binding is TestWidgetsFlutterBinding); assert(binding is TestWidgetsFlutterBinding);
final TestWidgetsFlutterBinding testBinding = binding; final TestWidgetsFlutterBinding testBinding = binding as TestWidgetsFlutterBinding;
return testBinding; return testBinding;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment