From ad56b54b63faec470e34f8ddef2442b5acb2f6c5 Mon Sep 17 00:00:00 2001 From: Valentin Vignal <32538273+ValentinVignal@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:08:53 +0800 Subject: [PATCH] Add test for standard_fab_location.0.dart (#149225) Contributes to https://github.com/flutter/flutter/issues/130459 It adds a test for - `examples/api/lib/material/floating_action_button_location/standard_fab_location.0.dart` --- dev/bots/check_code_samples.dart | 1 - .../standard_fab_location.0_test.dart | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 examples/api/test/material/floating_action_button_location/standard_fab_location.0_test.dart diff --git a/dev/bots/check_code_samples.dart b/dev/bots/check_code_samples.dart index 3fd0d37c77..57357e6773 100644 --- a/dev/bots/check_code_samples.dart +++ b/dev/bots/check_code_samples.dart @@ -323,7 +323,6 @@ final Set _knownMissingTests = { 'examples/api/test/material/menu_anchor/menu_anchor.2_test.dart', 'examples/api/test/material/stepper/stepper.controls_builder.0_test.dart', 'examples/api/test/material/flexible_space_bar/flexible_space_bar.0_test.dart', - 'examples/api/test/material/floating_action_button_location/standard_fab_location.0_test.dart', 'examples/api/test/material/chip/deletable_chip_attributes.on_deleted.0_test.dart', 'examples/api/test/material/icon_button/icon_button.3_test.dart', 'examples/api/test/material/expansion_panel/expansion_panel_list.expansion_panel_list_radio.0_test.dart', diff --git a/examples/api/test/material/floating_action_button_location/standard_fab_location.0_test.dart b/examples/api/test/material/floating_action_button_location/standard_fab_location.0_test.dart new file mode 100644 index 0000000000..2e4d6495b3 --- /dev/null +++ b/examples/api/test/material/floating_action_button_location/standard_fab_location.0_test.dart @@ -0,0 +1,20 @@ +// 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/floating_action_button_location/standard_fab_location.0.dart' + as example; +import 'package:flutter_test/flutter_test.dart'; + +void main() { + testWidgets('The FloatingActionButton should have a right padding', (WidgetTester tester) async { + await tester.pumpWidget( + const example.StandardFabLocationExampleApp(), + ); + + expect(find.widgetWithIcon(FloatingActionButton, Icons.add), findsOne); + final double right = tester.getCenter(find.byType(FloatingActionButton)).dx; + expect(right, closeTo(706, 1)); + }); +}