mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Contributes to https://github.com/flutter/flutter/issues/130459 It adds a test for - `examples/api/lib/material/stepper/stepper.controls_builder.0.dart`
22 lines
905 B
Dart
22 lines
905 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/material.dart';
|
|
import 'package:flutter_api_samples/material/stepper/stepper.controls_builder.0.dart' as example;
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Stepper control builder can be overridden to display custom buttons', (WidgetTester tester) async {
|
|
await tester.pumpWidget(
|
|
const example.ControlsBuilderExampleApp(),
|
|
);
|
|
|
|
expect(find.widgetWithText(AppBar, 'Stepper Sample'), findsOne);
|
|
expect(find.text('A').hitTestable(), findsOne);
|
|
expect(find.text('B').hitTestable(), findsOne);
|
|
expect(find.widgetWithText(TextButton, 'NEXT').hitTestable(), findsOne);
|
|
expect(find.widgetWithText(TextButton, 'CANCEL').hitTestable(), findsOne);
|
|
});
|
|
}
|