blob: 5b50a0f001e2d2223318ad2d32f33117503c7279 [file] [log] [blame]
// Copyright 2013 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_test/flutter_test.dart';
import 'package:ios_platform_images_example/main.dart';
void main() {
testWidgets('Verify loads image', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
expect(
find.byWidgetPredicate(
(Widget widget) => widget is Image,
),
findsOneWidget,
);
});
}