testWidgets('Drag and drop - onDraggableCanceled called if dropped on non-accepting target with correct velocity',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - onDraggableCanceled called if dropped on non-accepting target with correct velocity',(WidgetTestertester)async{
testWidgets('Drag and drop - DragTarget rebuilds with and without rejected data when a rejected draggable enters and leaves',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - DragTarget rebuilds with and without rejected data when a rejected draggable enters and leaves',(WidgetTestertester)async{
awaittester.pumpWidget(MaterialApp(
awaittester.pumpWidget(MaterialApp(
home:Column(
home:Column(
children:<Widget>[
children:<Widget>[
...
@@ -1628,7 +1629,7 @@ void main() {
...
@@ -1628,7 +1629,7 @@ void main() {
});
});
testWidgets('Drag and drop - Can drag and drop over a non-accepting target multiple times',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - Can drag and drop over a non-accepting target multiple times',(WidgetTestertester)async{
intnumberOfTimesOnDraggableCanceledCalled=0;
intnumberOfTimesOnDraggableCanceledCalled=0;
awaittester.pumpWidget(MaterialApp(
awaittester.pumpWidget(MaterialApp(
home:Column(
home:Column(
...
@@ -1710,7 +1711,7 @@ void main() {
...
@@ -1710,7 +1711,7 @@ void main() {
expect(find.text('Rejected'),findsNothing);
expect(find.text('Rejected'),findsNothing);
});
});
testWidgets('Drag and drop - onDragCompleted not called if dropped on non-accepting target',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - onDragCompleted not called if dropped on non-accepting target',(WidgetTestertester)async{
// Create a [MaterialApp], with a nested [Navigator], which has the
// Create a [MaterialApp], with a nested [Navigator], which has the
...
@@ -2976,7 +2980,7 @@ void main() {
...
@@ -2976,7 +2980,7 @@ void main() {
});
});
// Regression test for https://github.com/flutter/flutter/issues/72483
// Regression test for https://github.com/flutter/flutter/issues/72483
testWidgets('Drag and drop - DragTarget<Object> can accept Draggable<int> data',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - DragTarget<Object> can accept Draggable<int> data',(WidgetTestertester)async{
finalList<Object>accepted=<Object>[];
finalList<Object>accepted=<Object>[];
awaittester.pumpWidget(MaterialApp(
awaittester.pumpWidget(MaterialApp(
home:Column(
home:Column(
...
@@ -3012,7 +3016,7 @@ void main() {
...
@@ -3012,7 +3016,7 @@ void main() {
expect(accepted,equals(<int>[1]));
expect(accepted,equals(<int>[1]));
});
});
testWidgets('Drag and drop - DragTarget<int> can accept Draggable<Object> data when runtime type is int',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - DragTarget<int> can accept Draggable<Object> data when runtime type is int',(WidgetTestertester)async{
finalList<int>accepted=<int>[];
finalList<int>accepted=<int>[];
awaittester.pumpWidget(MaterialApp(
awaittester.pumpWidget(MaterialApp(
home:Column(
home:Column(
...
@@ -3048,7 +3052,7 @@ void main() {
...
@@ -3048,7 +3052,7 @@ void main() {
expect(accepted,equals(<int>[1]));
expect(accepted,equals(<int>[1]));
});
});
testWidgets('Drag and drop - DragTarget<int> should not accept Draggable<Object> data when runtime type null',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop - DragTarget<int> should not accept Draggable<Object> data when runtime type null',(WidgetTestertester)async{
finalList<int>accepted=<int>[];
finalList<int>accepted=<int>[];
boolisReceiveNullDataForCheck=false;
boolisReceiveNullDataForCheck=false;
awaittester.pumpWidget(MaterialApp(
awaittester.pumpWidget(MaterialApp(
...
@@ -3091,7 +3095,7 @@ void main() {
...
@@ -3091,7 +3095,7 @@ void main() {
expect(isReceiveNullDataForCheck,true);
expect(isReceiveNullDataForCheck,true);
});
});
testWidgets('Drag and drop can contribute semantics',(WidgetTestertester)async{
testWidgetsWithLeakTracking('Drag and drop can contribute semantics',(WidgetTestertester)async{
testWidgets('run with page down/up',(WidgetTestertester)async{
testWidgetsWithLeakTracking('run with page down/up',(WidgetTestertester)async{
controller.text=
controller.text=
'aa\n'// 3
'aa\n'// 3
'a\n'// 3 + 2 = 5
'a\n'// 3 + 2 = 5
...
@@ -1560,7 +1561,7 @@ void main() {
...
@@ -1560,7 +1561,7 @@ void main() {
));
));
},variant:TargetPlatformVariant.all(excluding:<TargetPlatform>{TargetPlatform.iOS,TargetPlatform.macOS}));// intended: on macOS Page Up/Down only scrolls
},variant:TargetPlatformVariant.all(excluding:<TargetPlatform>{TargetPlatform.iOS,TargetPlatform.macOS}));// intended: on macOS Page Up/Down only scrolls
testWidgets('run can be interrupted by layout changes',(WidgetTestertester)async{
testWidgetsWithLeakTracking('run can be interrupted by layout changes',(WidgetTestertester)async{
controller.text=
controller.text=
'aa\n'// 3
'aa\n'// 3
'a\n'// 3 + 2 = 5
'a\n'// 3 + 2 = 5
...
@@ -1589,7 +1590,7 @@ void main() {
...
@@ -1589,7 +1590,7 @@ void main() {
));
));
},variant:TargetPlatformVariant.all());
},variant:TargetPlatformVariant.all());
testWidgets('run can be interrupted by selection changes',(WidgetTestertester)async{
testWidgetsWithLeakTracking('run can be interrupted by selection changes',(WidgetTestertester)async{
controller.text=
controller.text=
'aa\n'// 3
'aa\n'// 3
'a\n'// 3 + 2 = 5
'a\n'// 3 + 2 = 5
...
@@ -1624,7 +1625,7 @@ void main() {
...
@@ -1624,7 +1625,7 @@ void main() {
));
));
},variant:TargetPlatformVariant.all());
},variant:TargetPlatformVariant.all());
testWidgets('long run with fractional text height',(WidgetTestertester)async{
testWidgetsWithLeakTracking('long run with fractional text height',(WidgetTestertester)async{