
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 ```
15 lines
557 B
Dart
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);
|
|
});
|
|
}
|