flutter/examples/platform_channel/test/platform_channel_test.dart
Robert Ancell cf4dace52b
Fix crash in Linux platform channel example. (#155735)
When running this example it was crashing, so investigated a fixed a
couple of bugs.
2024-10-01 13:09:49 +13:00

16 lines
584 B
Dart

// 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_test/flutter_test.dart';
import 'package:platform_channel/main.dart' as platform_channel;
void main() {
testWidgets('Platform channel smoke test', (WidgetTester tester) async {
platform_channel.main(); // builds the app and schedules a frame but doesn't trigger one
await tester.pump(); // triggers a frame
expect(find.textContaining('Battery level: '), findsOneWidget);
});
}