Add tests for color_filtered.0.dart example.#151064
Add tests for color_filtered.0.dart example.#151064auto-submit[bot] merged 7 commits intoflutter:masterfrom
Conversation
| HttpOverrides.global = null; | ||
| }); | ||
|
|
||
| testWidgets('Displays two images', (WidgetTester tester) async { |
There was a problem hiding this comment.
These 3 tests can be just one clear and concise test.
"'Displays two images" test - you're already finding first and last images the implies there are only two images.
"'Applies red color filter with modulate blend mode to the first image" & "Applies grey color filter with saturation blend mode to the second image" - These two are short and verbose tests. We can add single test with "Color filter is applied to the images" and explain the difference in the test comment instead.
There was a problem hiding this comment.
@TahaTesser thanks for the review and great suggestion. I applied it in the latest commit.
| await tester.pumpAndSettle(); | ||
|
|
||
| final RenderObject renderObject = tester.firstRenderObject( | ||
| final RenderObject renderObject1 = tester.firstRenderObject( |
There was a problem hiding this comment.
We can remove final and reassign the value, this also ensures that we have updated expected values.
There was a problem hiding this comment.
Sorry, maybe I am missing something, but how does this ensure we have updated the expected values?
| ); | ||
| final ColorFilterLayer colorFilterLayer = | ||
| renderObject.debugLayer! as ColorFilterLayer; | ||
| final ColorFilterLayer colorFilterLayer1 = |
There was a problem hiding this comment.
We can remove final and reassign the value, this also ensures that we have updated expected values.
| // Verify that two images are displayed. | ||
| expect(find.byType(Image), findsNWidgets(2)); | ||
|
|
||
| final RenderObject renderObject1 = tester.firstRenderObject( |
There was a problem hiding this comment.
| final RenderObject renderObject1 = tester.firstRenderObject( | |
| RenderObject renderObject = tester.firstRenderObject( |
| equals(const ColorFilter.mode(Colors.red, BlendMode.modulate)), | ||
| ); | ||
|
|
||
| final RenderObject renderObject2 = tester.firstRenderObject( |
There was a problem hiding this comment.
| final RenderObject renderObject2 = tester.firstRenderObject( | |
| renderObject = tester.firstRenderObject( |
Earlier we found render object for the first image, here we assign the variable to expect a different value.
b957b99 to
7a8e7b7
Compare
23c769e to
531d935
Compare
531d935 to
974bfa2
Compare
|
@TahaTesser @bleroux thanks for the review! |
This PR contributes to flutter#130459 ### Description - Adds tests for `examples/api/lib/widgets/color_filter/color_filtered.0.dart`
flutter/flutter@fafd67d...5103d75 2024-07-09 [email protected] [tool] Remove some usages of deprecated usage package (flutter/flutter#151359) 2024-07-09 [email protected] Write the package config location to the test bootstrap. (flutter/flutter#150440) 2024-07-09 [email protected] [deps] Roll dart-lang/native packages (flutter/flutter#151403) 2024-07-08 [email protected] [tool] make `testUsingContext` provide a `Stdio` (with `hasTerminal` unset) override by default (flutter/flutter#151357) 2024-07-08 [email protected] Make `FittedBox` not throw when child has zero size. (flutter/flutter#150430) 2024-07-08 [email protected] Update `DataTable` documentation (flutter/flutter#151356) 2024-07-08 [email protected] `MaterialState` � `WidgetState` in documentation (flutter/flutter#151376) 2024-07-08 [email protected] [ios]A typical news app benchmark with bottom ad banner (flutter/flutter#150991) 2024-07-08 [email protected] Re-enable `SemanticsAction.focus` matchers (flutter/flutter#150990) 2024-07-08 [email protected] Added SliverFloatingHeader.snapMode (flutter/flutter#151289) 2024-07-08 [email protected] Factor out deprecated names in example code (flutter/flutter#151374) 2024-07-08 [email protected] Add cedric vanden bosch to authors (flutter/flutter#151313) 2024-07-08 [email protected] Roll Packages from 97bad7e to 14341d1 (5 revisions) (flutter/flutter#151417) 2024-07-08 [email protected] Update doc-import to primary configured import, _goldens_io.dart (flutter/flutter#151390) 2024-07-08 [email protected] [Reland] - Enable `explicitChildNodes` for the `AlertDialog` content (flutter/flutter#149597) 2024-07-08 [email protected] Add tests for material_state_border_side.0_test.dart (flutter/flutter#151089) 2024-07-08 [email protected] Roll Flutter Engine from ca79a56a66d7 to 69075e7e87d4 (1 revision) (flutter/flutter#151393) 2024-07-08 [email protected] Add tests for action_listener.0.dart (flutter/flutter#150606) 2024-07-07 [email protected] Roll Flutter Engine from 5ca3b856ee5a to ca79a56a66d7 (1 revision) (flutter/flutter#151387) 2024-07-06 [email protected] Roll Flutter Engine from 3600ec613a00 to 5ca3b856ee5a (1 revision) (flutter/flutter#151378) 2024-07-06 [email protected] Roll Flutter Engine from d1ebc5fde630 to 3600ec613a00 (1 revision) (flutter/flutter#151377) 2024-07-06 [email protected] Roll Flutter Engine from e6b09697df1a to d1ebc5fde630 (1 revision) (flutter/flutter#151362) 2024-07-05 49699333+dependabot[bot]@users.noreply.github.com Bump actions/upload-artifact from 4.3.3 to 4.3.4 (flutter/flutter#151354) 2024-07-05 [email protected] Roll Flutter Engine from 4ee09d3b7f3b to e6b09697df1a (2 revisions) (flutter/flutter#151352) 2024-07-05 [email protected] Add tests for color_filtered.0.dart example. (flutter/flutter#151064) 2024-07-05 [email protected] de-duplicate code in analyze.dart (flutter/flutter#151279) 2024-07-05 [email protected] Roll Packages from 754de19 to 97bad7e (1 revision) (flutter/flutter#151350) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-packages Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Packages: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
This PR contributes to #130459
Description
examples/api/lib/widgets/color_filter/color_filtered.0.dartPre-launch Checklist
///).