integration_test.dart 548 Bytes
Newer Older
1 2 3 4
// 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.

5
import 'package:flutter/material.dart';
6
import 'package:flutter_test/flutter_test.dart';
7
import 'package:integration_ui/overflow.dart' as app;
8 9 10 11 12 13 14

void main() {
  group('Integration Test', () {
    testWidgets('smoke test', (WidgetTester tester) async {
        app.main();
        await tester.pumpAndSettle();

15
        expect(find.byType(SizedBox), findsOneWidget);
16 17 18
      });
  });
}