// 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/paginated_data_table/paginated_data_table.1.dart' as example; import 'package:flutter_test/flutter_test.dart'; void main() { testWidgets('PaginatedDataTable 1', (WidgetTester tester) async { await tester.pumpWidget(const example.DataTableExampleApp()); expect(find.text('Strange New Worlds'), findsOneWidget); await tester.tap(find.byIcon(Icons.arrow_upward).at(1)); await tester.pump(); expect(find.text('Strange New Worlds'), findsNothing); await tester.tap(find.byIcon(Icons.chevron_right)); await tester.pump(); expect(find.text('Strange New Worlds'), findsOneWidget); await tester.tap(find.byIcon(Icons.arrow_upward).at(1)); await tester.pump(); expect(find.text('Strange New Worlds'), findsNothing); }); }