blob: 9cf4e91d6d12fea91447f9d4a2a4d00bdb89919f [file] [log] [blame]
// Copyright 2014 The Flutter Authors. 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:flutter/material.dart';
import 'package:flutter_api_samples/material/progress_indicator/linear_progress_indicator.1.dart'
as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('Finds LinearProgressIndicator', (WidgetTester tester) async {
await tester.pumpWidget(
const example.ProgressIndicatorApp(),
);
expect(
find.bySemanticsLabel('Linear progress indicator').first,
findsOneWidget,
);
// Test if LinearProgressIndicator is animating.
expect(tester.hasRunningAnimations, isTrue);
await tester.pump(const Duration(seconds: 1));
expect(tester.hasRunningAnimations, isTrue);
// Test determinate mode button.
await tester.tap(find.byType(Switch));
await tester.pumpAndSettle();
expect(tester.hasRunningAnimations, isFalse);
await tester.tap(find.byType(Switch));
await tester.pump(const Duration(seconds: 1));
expect(tester.hasRunningAnimations, isTrue);
});
}