mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
[animations] adds test for CarouselDemo (#443)
This commit is contained in:
31
animations/test/misc/carousel_test.dart
Normal file
31
animations/test/misc/carousel_test.dart
Normal file
@@ -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);
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user