blob: 31084fc2634e83953349d705ac4766960df84a38 [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_api_samples/material/paginated_data_table/paginated_data_table.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('PaginatedDataTable 0', (WidgetTester tester) async {
await tester.pumpWidget(const example.DataTableExampleApp());
expect(find.text('Associate Professor'), findsOneWidget);
});
}