flutter/examples/api/test/widgets/sliver/sliver_ensure_semantics.0_test.dart
Matan Lurey 72ee26e314
Initialize Flutter Beta (flutter-3.32-candidate.0) (#166783)
Closes https://github.com/flutter/flutter/issues/166811.

```sh
$ dev/conductor/bin/conductor start \
  --candidate-branch=flutter-3.32-candidate.0 \
  --release-channel=beta \
  --github-username=matanlurey \
  --dart-revision=0d6811928830b87e36a0f49eb7fe554c308d3699 
```
2025-04-09 22:57:49 +00:00

15 lines
557 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_api_samples/widgets/sliver/sliver_ensure_semantics.0.dart' as example;
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('SliverEnsureSemantics example', (WidgetTester tester) async {
await tester.pumpWidget(const example.SliverEnsureSemanticsExampleApp());
expect(find.text('SliverEnsureSemantics Demo'), findsOneWidget);
});
}