mirror of https://github.com/flutter/samples.git
[animations] adds test for CarouselDemo (#443)
parent
d500d15c0f
commit
491c3f58aa
@ -0,0 +1,31 @@
|
||||
// Copyright 2020 The Flutter team. 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:animations/src/misc/carousel.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
Widget createCarouselDemoScreen() => MaterialApp(
|
||||
home: CarouselDemo(),
|
||||
);
|
||||
|
||||
void main() {
|
||||
group('CarouselDemo tests', () {
|
||||
testWidgets('Swipe left moves carousel', (tester) async {
|
||||
await tester.pumpWidget(createCarouselDemoScreen());
|
||||
|
||||
// Get the images available on the screen during initial state.
|
||||
var imageList = tester.widgetList(find.byType(Image)).toList();
|
||||
expect(imageList.length, 2);
|
||||
|
||||
// Swipe the Carousel.
|
||||
await tester.fling(find.byType(CarouselDemo), Offset(-400, 0), 800);
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
// Get the images available on the screen after swipe.
|
||||
imageList = tester.widgetList(find.byType(Image)).toList();
|
||||
expect(imageList.length, 3);
|
||||
});
|
||||
});
|
||||
}
|
Loading…
Reference in new issue